started to work on the "LeftLight" concept (cf. Changelog)

This commit is contained in:
Olivier Müller
2002-01-11 15:59:32 +00:00
parent 965a949d8a
commit f2567b035f
8 changed files with 380 additions and 4 deletions

View File

@@ -807,10 +807,17 @@ if (!defined('PMA_COMMON_LIB_INCLUDED')){
*/
function PMA_showMessage($message)
{
if (isset($GLOBALS['cfgLeftFrameLight']) && $GLOBALS['cfgLeftFrameLight']) {
$leftFrame = "leftlight.php3";
} else {
$leftFrame = "left.php3";
}
// Reloads the navigation frame via JavaScript if required
if (isset($GLOBALS['reload']) && $GLOBALS['reload']) {
echo "\n";
$reload_url = './left.php3'
$reload_url = './' . $leftFrame
. '?lang=' . $GLOBALS['lang']
. '&server=' . $GLOBALS['server']
. ((!empty($GLOBALS['db'])) ? '&db=' . urlencode($GLOBALS['db']) : '');