diff --git a/ext/user/theme.php b/ext/user/theme.php index c313ab17..32ccbf05 100644 --- a/ext/user/theme.php +++ b/ext/user/theme.php @@ -20,6 +20,10 @@ class UserPageTheme extends Themelet { global $config; $tac = $config->get_string("login_tac"); + $tfe = new TextFormattingEvent($tac); + send_event($tfe); + $tac = $tfe->formatted; + if(empty($tac)) {$html = "";} else {$html = "

$tac

";}