Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnn + J.M <phpMyAdmin@ZweiSteinSoft.de>2014-10-22 22:05:17 +0400
committerAnn + J.M <phpMyAdmin@ZweiSteinSoft.de>2014-10-22 22:06:14 +0400
commit6feb3b0d3a8b68ea2e7fda7eebd9cdb6c7e71f64 (patch)
tree0eb177f89a9ecda28c9d7e9504bc164f23137835 /tbl_select.php
parent29ec69c849e1db90724a3c3ed62356ea5fe96a59 (diff)
Fix failing unit tests
Signed-off-by: Ann + J.M. <phpMyAdmin@ZweiSteinSoft.de>
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_select.php b/tbl_select.php
index 99a23da403..9101d808a6 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -56,7 +56,7 @@ if (! isset($_POST['columnsToDisplay']) && ! isset($_POST['displayAllColumns']))
$goto = $GLOBALS['cfg']['DefaultTabTable'];
}
// Defines the url to return to in case of error in the next sql statement
- $err_url = $goto . PMA_URL_getCommon(array('db' => $db, 'table' => table));
+ $err_url = $goto . PMA_URL_getCommon(array('db' => $db, 'table' => $table));
// Displays the table search form
$response->addHTML($table_search->getSecondaryTabs());
$response->addHTML($table_search->getSelectionForm($goto));