1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 03:24:20 +02:00

Closes #5373 - Bootstrap 5.

This commit is contained in:
camer0n
2025-01-13 11:41:57 -08:00
parent d86eeac7bc
commit 6aa42ccad9
6 changed files with 18 additions and 16 deletions

View File

@@ -1035,7 +1035,7 @@ e107::css('inline',"
public function renderHelp()
{
$help_text = str_replace("[br]", "<br />", FORLAN_189);
$help_text = str_replace(array("[", "]"), array("<a href='".e_ADMIN_ABS."notify.php'>"), $help_text);
$help_text = str_replace(array("[", "]"), array("<a href='".e_ADMIN_ABS."notify.php'>", "</a>"), $help_text);
return array('caption' => LAN_HELP, 'text' => $help_text);
}