bug #3044189 [doc] Cleared documentation for hide_db.

This commit is contained in:
Michal Čihař
2010-08-20 11:02:38 +02:00
parent e8cf1ac677
commit a29323a1a6
2 changed files with 2 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #3040226 [XHTML] LockFromUpdate checkbox not checked by default - bug #3040226 [XHTML] LockFromUpdate checkbox not checked by default
- bug [doc] Withdraw or edit FAQ entries related to older MySQL or PHP - bug [doc] Withdraw or edit FAQ entries related to older MySQL or PHP
- bug #3042706 [pmadb] Relations, bookmarks, etc deleted after table drop - 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) 3.3.5.0 (2010-07-26)
- patch #2932113 [information_schema] Slow export when having lots of - patch #2932113 [information_schema] Slow export when having lots of

View File

@@ -834,7 +834,7 @@ since this link provides funding for phpMyAdmin.
For example, to hide all databases starting with the letter &#34;a&#34;, use<br /> For example, to hide all databases starting with the letter &#34;a&#34;, use<br />
<pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre> <pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre>
and to hide both &#34;db1&#34; and &#34;db2&#34; use <br /> and to hide both &#34;db1&#34; and &#34;db2&#34; use <br />
<pre>$cfg['Servers'][$i]['hide_db'] = '(db1|db2)';</pre> <pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';</pre>
More information on regular expressions can be found in the More information on regular expressions can be found in the
<a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php"> <a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php">
PCRE pattern syntax</a> portion of the PHP reference manual. PCRE pattern syntax</a> portion of the PHP reference manual.