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:
authorDurgesh <007durgesh219@gmail.com>2016-02-19 16:33:11 +0300
committerDurgesh <007durgesh219@gmail.com>2016-02-22 12:06:41 +0300
commit0b64827930ef5232149ea211647cb7c95719d2d5 (patch)
tree3964cdd12cb0d00e6d9987ecfe35f9e92498ec56 /normalization.php
parentb8c39d413de690e2cffbca9926dbf768ee076b83 (diff)
Refactored url parmeters generating, Issue #11990
Signed-off-by: Durgesh <007durgesh219@gmail.com>
Diffstat (limited to 'normalization.php')
-rw-r--r--normalization.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/normalization.php b/normalization.php
index da990da793..c6601ff40d 100644
--- a/normalization.php
+++ b/normalization.php
@@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
+use PMA\libraries\URL;
/**
*
@@ -28,7 +29,7 @@ if (isset($_REQUEST['getColumns'])) {
if (isset($_REQUEST['splitColumn'])) {
$num_fields = $_REQUEST['numFields'];
$html = PMA_getHtmlForCreateNewColumn($num_fields, $db, $table);
- $html .= PMA_URL_getHiddenInputs($db, $table);
+ $html .= URL::getHiddenInputs($db, $table);
echo $html;
exit;
}
@@ -38,7 +39,7 @@ if (isset($_REQUEST['addNewPrimary'])) {
$html = PMA_getHtmlForCreateNewColumn(
$num_fields, $db, $table, $columnMeta
);
- $html .= PMA_URL_getHiddenInputs($db, $table);
+ $html .= URL::getHiddenInputs($db, $table);
echo $html;
exit;
}