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:
authorMichal Čihař <mcihar@suse.cz>2013-08-07 12:58:17 +0400
committerMichal Čihař <mcihar@suse.cz>2013-08-07 12:58:17 +0400
commit0a3d1d5be80a93d24e40b3e90c5b6491da1141fd (patch)
tree7d9eeaa3eac1d68decea74702b708df4d35372c3 /tbl_select.php
parentffae07abda9cc3538c4ae137466595c633c1a21f (diff)
Better names for URL generating functions
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 07be207143..f191d592a5 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -46,7 +46,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_generate_common_url($db, $table);
+ $err_url = $goto . '?' . PMA_URL_getCommon($db, $table);
// Displays the table search form
$response->addHTML($table_search->getSecondaryTabs());
$response->addHTML($table_search->getSelectionForm($goto));