1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-23 06:33:22 +02:00

Admin theme upgrade fix

This commit is contained in:
Cameron
2013-03-16 14:30:53 -07:00
parent 204fb65b4b
commit 4f6b639ee9
4 changed files with 16 additions and 4 deletions

View File

@@ -11,5 +11,10 @@
if (!defined('e107_INIT')) { exit; }
$caption = "Dashboard";
$text = "This page provides you with an overview of site activity";
$text = "This page provides you with an overview of site activity.<br /><br />";
if(e107::getPref('admincss')=='admin_dark.css')
{
$text .= "<small>Theme too dark? <a class='btn btn-mini btn-inverse' href='".e_ADMIN."theme.php?mode=admin'>Change it here</a></small>";
}
$ns -> tablerender($caption, $text);