1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-13 08:59:44 +01:00

Merge pull request #5347 from rica-carv/rica-carv-forum_shortcode_bug

Forum shortcode e_BASE bug correction
This commit is contained in:
Cameron 2025-01-10 10:33:42 -08:00 committed by GitHub
commit f98d386bd9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -185,7 +185,7 @@ class forum_shortcodes extends e_shortcode
}
// String candidate for USERLIST wrapper
$text .= "<br /><a rel='external' href='".e_BASE."online.php'>".LAN_FORUM_0037."</a> ".LAN_FORUM_0038;
$text .= "<br /><a rel='external' href='".e_HTTP."online.php'>".LAN_FORUM_0037."</a> ".LAN_FORUM_0038;
}
return $text;
}