Use preg again, it just needs a bit more escaping of \ (once for PHP and once for PCRE).
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-11-24 Michal Cihar <nijel@users.sourceforge.net>
|
||||
* libraries/common.lib.php: Use preg again, it just needs a bit more
|
||||
escaping of \ (once for PHP and once for PCRE).
|
||||
|
||||
2003-11-23 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* server_privileges.php3: while (list() = each()) is not always as bad as
|
||||
one might think ;-p
|
||||
|
@@ -1104,9 +1104,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
||||
// We don't want more than one asterisk inside our 'only_db'.
|
||||
continue;
|
||||
}
|
||||
|
||||
//if ($is_show_dbs && preg_match('@(^|[^\])(_|%)@', $dblist[$i])) {
|
||||
if ($is_show_dbs && ereg('(^|[^\])(_|%)', $dblist[$i])) {
|
||||
if ($is_show_dbs && preg_match('@(^|[^\\\\])(_|%)@', $dblist[$i])) {
|
||||
$local_query = 'SHOW DATABASES LIKE \'' . $dblist[$i] . '\'';
|
||||
$rs = PMA_mysql_query($local_query, $dbh);
|
||||
// "SHOW DATABASES" statement is disabled
|
||||
|
Reference in New Issue
Block a user