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 /tbl_create.php
parentb8c39d413de690e2cffbca9926dbf768ee076b83 (diff)
Refactored url parmeters generating, Issue #11990
Signed-off-by: Durgesh <007durgesh219@gmail.com>
Diffstat (limited to 'tbl_create.php')
-rw-r--r--tbl_create.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_create.php b/tbl_create.php
index c465c28cf7..d771fb7957 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
+use PMA\libraries\URL;
/**
* Get some core libraries
@@ -40,7 +41,7 @@ if ($GLOBALS['dbi']->getColumns($db, $table)) {
sprintf(__('Table %s already exists!'), htmlspecialchars($table)),
'',
false,
- 'db_structure.php' . PMA_URL_getCommon(array('db' => $db))
+ 'db_structure.php' . URL::getCommon(array('db' => $db))
);
}