Incremented required config.inc.php3 revision number.

This commit is contained in:
Alexander M. Turek
2003-06-06 23:10:05 +00:00
parent c2da2e481f
commit 8d263edf44
2 changed files with 10 additions and 6 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-06-07 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3: Incremented required config.inc.php3 revision
number.
2003-06-06 Marc Delisle <lem9@users.sourceforge.net> 2003-06-06 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, config.inc.php3: new LimitChars behavior * Documentation.html, config.inc.php3: new LimitChars behavior
@@ -59,7 +63,7 @@ $Source$
setting. setting.
2003-06-03 Garvin Hicking <me@supergarv.de> 2003-06-03 Garvin Hicking <me@supergarv.de>
* lang/*, tbl_query_box.php3, Documentation.html, footer.inc.php3: * lang/*, tbl_query_box.php3, Documentation.html, footer.inc.php3:
(Experimental) (Experimental)
New feature - The automatic update of the query window seems to New feature - The automatic update of the query window seems to
cause some headache for users. They type in their query, want to cause some headache for users. They type in their query, want to
@@ -71,10 +75,10 @@ $Source$
unchecked to restore previous behaviour. Thanks to Alexander Meis unchecked to restore previous behaviour. Thanks to Alexander Meis
for this suggestion. Optionally we could build in a config variable for this suggestion. Optionally we could build in a config variable
to override this 'onChange' effect, but I guess it's not necessary. to override this 'onChange' effect, but I guess it's not necessary.
* libraries/display_tbl.lib.php3: Bug #748084 - Use preg_replace instead * libraries/display_tbl.lib.php3: Bug #748084 - Use preg_replace instead
of ereg_replace, because it interprets \0, \1 and so on not as strings of ereg_replace, because it interprets \0, \1 and so on not as strings
but as regex-subpatterns and fails to convert those strings correctly. but as regex-subpatterns and fails to convert those strings correctly.
We'll have to see if that can be the case on other usages of We'll have to see if that can be the case on other usages of
preg_replace as well. preg_replace as well.
2003-06-02 Alexander M. Turek <rabus@users.sourceforge.net> 2003-06-02 Alexander M. Turek <rabus@users.sourceforge.net>
@@ -98,7 +102,7 @@ $Source$
2003-06-02 Marc Delisle <lem9@users.sourceforge.net> 2003-06-02 Marc Delisle <lem9@users.sourceforge.net>
### 2.5.1 released ### 2.5.1 released
* (not in 2.5.1) sql.php3: bug 747451, incorrect detection of * (not in 2.5.1) sql.php3: bug 747451, incorrect detection of
PROCEDURE ANALYSE() PROCEDURE ANALYSE()
2003-06-02 Alexander M. Turek <rabus@users.sourceforge.net> 2003-06-02 Alexander M. Turek <rabus@users.sourceforge.net>
@@ -2042,4 +2046,4 @@ $Source$
# vim: ft=changelog # vim: ft=changelog
# vim: expandtab ts=4 sw=4 sts=4 # vim: expandtab ts=4 sw=4 sts=4
# vim: fde=getline(v\:lnum-1)=~'^\\s*$'&&getline(v\:lnum)=~'\\S'?'>1'\:1&&v\:lnum>8&&getline(v\:lnum)!~'^#' # vim: fde=getline(v\:lnum-1)=~'^\\s*$'&&getline(v\:lnum)=~'\\S'?'>1'\:1&&v\:lnum>8&&getline(v\:lnum)!~'^#'
# vim: fdn=1 fdm=expr # vim: fdn=1 fdm=expr

View File

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