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:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-07 18:48:43 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-08 16:54:21 +0300
commitca910e8de827203542e78a721f02b6376fcf4381 (patch)
treef4d46bd03d9245e65e82ba5910b695a036af24c5 /normalization.php
parent6e71574e9c6d9a68d3ebab98dcca805b63040a0c (diff)
Move classes to PhpMyAdmin namespace
- Move Table to PhpMyAdmin namespace - Move Template to PhpMyAdmin namespace - Move ThemeManager to PhpMyAdmin namespace - Move Theme to PhpMyAdmin namespace - Move Tracker to PhpMyAdmin namespace - Move Transformations to PhpMyAdmin namespace - Move TypesMySQL to PhpMyAdmin namespace - Move Types to PhpMyAdmin namespace - Move Util to PhpMyAdmin namespace - Move VersionInformation to PhpMyAdmin namespace - Move Url to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'normalization.php')
-rw-r--r--normalization.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/normalization.php b/normalization.php
index 49d6257a15..14d2137120 100644
--- a/normalization.php
+++ b/normalization.php
@@ -7,7 +7,7 @@
*/
use PhpMyAdmin\Core;
-use PMA\libraries\URL;
+use PhpMyAdmin\Url;
use PhpMyAdmin\Response;
/**
@@ -31,7 +31,7 @@ if (isset($_REQUEST['getColumns'])) {
if (isset($_REQUEST['splitColumn'])) {
$num_fields = min(4096, intval($_REQUEST['numFields']));
$html = PMA_getHtmlForCreateNewColumn($num_fields, $db, $table);
- $html .= URL::getHiddenInputs($db, $table);
+ $html .= Url::getHiddenInputs($db, $table);
echo $html;
exit;
}
@@ -41,7 +41,7 @@ if (isset($_REQUEST['addNewPrimary'])) {
$html = PMA_getHtmlForCreateNewColumn(
$num_fields, $db, $table, $columnMeta
);
- $html .= URL::getHiddenInputs($db, $table);
+ $html .= Url::getHiddenInputs($db, $table);
echo $html;
exit;
}