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_change.php
parentffae07abda9cc3538c4ae137466595c633c1a21f (diff)
Better names for URL generating functions
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_change.php b/tbl_change.php
index c1ecdd74c8..b5de613b2c 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -51,7 +51,7 @@ if (empty($GLOBALS['goto'])) {
$_url_params = PMA_getUrlParameters($db, $table);
-$err_url = $GLOBALS['goto'] . PMA_generate_common_url($_url_params);
+$err_url = $GLOBALS['goto'] . PMA_URL_getCommon($_url_params);
unset($_url_params);
$comments_map = PMA_getCommentsMap($db, $table);
@@ -141,7 +141,7 @@ if ($is_upload) {
$html_output .= ' enctype="multipart/form-data"';
}
$html_output .= '>';
-$html_output .= PMA_generate_common_hidden_inputs($_form_params);
+$html_output .= PMA_URL_getHiddenInputs($_form_params);
$titles['Browse'] = PMA_Util::getIcon('b_browse.png', __('Browse foreign values'));