Backwards compatibility for $cfg['PmaAbsoluteUri_DisableWarning'].

This commit is contained in:
Alexander M. Turek
2002-07-04 10:44:13 +00:00
parent 563b7444aa
commit 1e7b3d2902
3 changed files with 10 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-01 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3, libraries/config_import.lib.php3: Backwards
compatibility for $cfg['PmaAbsoluteUri_DisableWarning'].
2002-07-04 Robin Johnson <robbat2@users.sourceforge.net>
* config.inc.php3, libraries/common.lib.php3:
Code for $cfg['PmaAbsoluteUri_DisableWarning']

View File

@@ -136,7 +136,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
include('./libraries/defines.lib.php3');
// For compatibility with old config.inc.php3
if (!isset($cfg['FileRevision']) || (int)substr($cfg['FileRevision'],13,3) < 113) {
if (!isset($cfg['FileRevision']) || (int)substr($cfg['FileRevision'],13,3) < 116) {
include('./libraries/config_import.lib.php3');
}
@@ -504,7 +504,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
// We display the warning by default, but not if it is disabled thru
// via the $cfg['PmaAbsoluteUri_DisableWarning'] variable.
// This is intended for sysadmins that actually want the default behaviour
// This is intended for sysadmins that actually want the default behaviour
// of auto-detection due to their setup.
// See the mailing list message:
// http://sourceforge.net/mailarchive/forum.php?thread_id=859093&forum_id=2141

View File

@@ -712,6 +712,10 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
);
}
}
if (!isset($cfg['PmaAbsoluteUri_DisableWarning'])) {
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;
}
} // $__PMA_CONFIG_IMPORT_LIB__
?>