1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Bugtracker #4016 - THEME_DISCLAIMER

This commit is contained in:
e107steved
2007-07-12 21:19:17 +00:00
parent 708e2f23f6
commit a811893ee7
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,3 @@
global $tp;
$ret = $tp->toHtml(SITEDISCLAIMER,TRUE,"constants defs");
$ret .=(defined("THEME_DISCLAIMER") && $pref['displaythemeinfo'] ? THEME_DISCLAIMER : "");
return $ret;

View File

@@ -0,0 +1,3 @@
global $tp;
$ret =(defined("THEME_DISCLAIMER") && $pref['displaythemeinfo'] ? THEME_DISCLAIMER : "");
return $ret;