From a991dc62654322e10f3fd0d9a8193ed0ba6bdcfe Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 15 Jul 2004 11:17:47 +0000 Subject: [PATCH] typo about GLOBALS --- libraries/common.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 541b1ed3a..c0d599f0f 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -328,8 +328,8 @@ if (!isset($_COOKIE['pma_theme']) || empty($_COOKIE['pma_theme'])){ } else { $GLOBALS['theme'] = $_COOKIE['pma_theme']; } - $pmaThemeImage = './' . $cfg['ThemePath'] . '/' . $_GLOBALS['theme'] . '/img/'; - $tmp_layout_file = './' . $cfg['ThemePath'] . '/' . PMA_securePath($_GLOBALS['theme']) . '/layout.inc.php'; + $pmaThemeImage = './' . $cfg['ThemePath'] . '/' . $GLOBALS['theme'] . '/img/'; + $tmp_layout_file = './' . $cfg['ThemePath'] . '/' . PMA_securePath($GLOBALS['theme']) . '/layout.inc.php'; if (@file_exists($tmp_layout_file)) { include($tmp_layout_file); }