fixed bug #1469120 missing property in Theme_Manager class

This commit is contained in:
Sebastian Mendel
2006-04-12 09:11:02 +00:00
parent 3aa57387b7
commit e2980778e7
2 changed files with 7 additions and 0 deletions

View File

@@ -6,6 +6,8 @@ $Id$
$Source$
2006-04-12 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries\Theme_Manager.class.php:
fixed bug #1469120 missing property in Theme_Manager class
* libraries\common.lib.php:
fixed bug #1469109 PMA_backquote() issues

View File

@@ -36,6 +36,11 @@ class PMA_Theme_Manager {
*/
var $theme = null;
/**
* @var string
*/
var $theme_default = 'original';
function __construct()
{
$this->themes_path = trim($GLOBALS['cfg']['ThemePath']) ;