From 951e4bbf66c7ba8983a43f063af14b62047dcb2c Mon Sep 17 00:00:00 2001 From: shish Date: Wed, 1 Aug 2007 15:02:05 +0000 Subject: [PATCH] formatted terms & conditions git-svn-id: file:///home/shish/svn/shimmie2/trunk@400 7f39781d-f577-437e-ae19-be835c7a54ca --- ext/user/theme.php | 4 ++++ 1 file changed, 4 insertions(+) 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

";}