backwards compatibility

This commit is contained in:
Alexander M. Turek
2003-02-24 22:45:12 +00:00
parent 67eee6d625
commit ea5b1b7634
2 changed files with 13 additions and 10 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-02-24 Alexander M. Turek <rabus@users.sourceforge.net>
* common.lib.php3: Backwards compatibility.
2003-02-24 Garvin Hicking <me@supergarv.de>
Submitted multiple patches from the patch tracker:

View File

@@ -130,7 +130,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
* Includes compatibility code for older config.inc.php3 revisions
* if necessary
*/
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 156) {
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 161) {
include('./libraries/config_import.lib.php3');
}