diff -r 10ed1f728bf3 -r 3dea509d88ae includes/template.php --- a/includes/template.php Sat Jul 07 18:33:21 2007 -0400 +++ b/includes/template.php Sat Jul 07 22:54:20 2007 -0400 @@ -23,6 +23,18 @@ var $site_disabled = false; + /** + * One of the absolute best parts of Enano :-P + * @var string + */ + + var $fading_button = ' + Powered by Enano CMS + Powered by Enano CMS + '; + function __construct() { global $db, $session, $paths, $template, $plugins; // Common objects @@ -1369,7 +1381,6 @@ // SourceForge/W3C buttons $ob = Array(); $admintitle = ( $session->user_level >= USER_LEVEL_ADMIN ) ? 'title="You may disable this button in the admin panel under General Configuration."' : ''; - if(getConfig('powered_btn') =='1') $ob[] = 'Powered by Enano'; if(getConfig('sflogo_enabled')=='1') { $ob[] = 'SourceForge.net Logo'; @@ -1388,7 +1399,7 @@ eval($cmd); } - if(count($ob) > 0) $sb_links = '
'.implode('
', $ob).'
'; + if(count($ob) > 0) $sb_links = '
'. ( ( getConfig('powered_btn') == '1' ) ? $this->fading_button : '' ) . implode('
', $ob).'
'; else $sb_links = ''; $this->sidebar_widget('Links', $sb_links);