[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14980-g7327dab

Michal Čihař nijel at users.sourceforge.net
Mon Aug 15 10:01:23 CEST 2011


The branch, master has been updated
       via  7327dab9361aa7095fc2c92f0489f8c8a159508d (commit)
      from  8539600451db2175257a496f8bc17a3009ccee59 (commit)


- Log -----------------------------------------------------------------
commit 7327dab9361aa7095fc2c92f0489f8c8a159508d
Author: Michal Čihař <michal at cihar.com>
Date:   Mon Aug 15 10:01:10 2011 +0200

    Include link to docs

-----------------------------------------------------------------------

Summary of changes:
 libraries/Table.class.php |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index 87fb50a..512ca2e 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -1185,7 +1185,7 @@ class PMA_Table
      *
      * returns an array with all columns make use of an index, in fact only
      * first columns in an index
-     * 
+     *
      * e.g. index(col1, col2) would only return col1
      *
      * @param bool  $backquoted  whether to quote name with backticks ``
@@ -1290,7 +1290,10 @@ class PMA_Table
             $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']);
 
             if (!$success) {
-                $message = PMA_Message::error(__('Failed to cleanup table UI preferences (see cfg["Server"]["MaxTableUiprefs"] documentation)'));
+                $message = PMA_Message::error(sprintf(
+                    __('Failed to cleanup table UI preferences (see $cfg[\'Servers\'][$i][\'MaxTableUiprefs\'] %s)'),
+                    PMA_showDocu('cfg_Servers_MaxTableUiprefs')
+                ));
                 $message->addMessage('<br /><br />');
                 $message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink'])));
             print_r($message);


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list