diff --git a/ChangeLog b/ChangeLog index 4b6bda786..03d58c43a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -116,6 +116,7 @@ $Id$ - bug #3040226 [XHTML] LockFromUpdate checkbox not checked by default - bug [doc] Withdraw or edit FAQ entries related to older MySQL or PHP - bug #3042706 [pmadb] Relations, bookmarks, etc deleted after table drop +- bug #3044189 [doc] Cleared documentation for hide_db. 3.3.5.0 (2010-07-26) - patch #2932113 [information_schema] Slow export when having lots of diff --git a/Documentation.html b/Documentation.html index 2238acf1c..a78284794 100644 --- a/Documentation.html +++ b/Documentation.html @@ -849,7 +849,7 @@ since this link provides funding for phpMyAdmin. For example, to hide all databases starting with the letter "a", use
$cfg['Servers'][$i]['hide_db'] = '^a';
and to hide both "db1" and "db2" use
-
$cfg['Servers'][$i]['hide_db'] = '(db1|db2)';
+
$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';
More information on regular expressions can be found in the PCRE pattern syntax portion of the PHP reference manual.