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_addfield.php
parentb8c39d413de690e2cffbca9926dbf768ee076b83 (diff)
Refactored url parmeters generating, Issue #11990
Signed-off-by: Durgesh <007durgesh219@gmail.com>
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index 18455dc899..2ec8a2972b 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
+use PMA\libraries\URL;
/**
* Get some core libraries
@@ -23,7 +24,7 @@ PMA\libraries\Util::checkParameters(array('db', 'table'));
/**
* Defines the url to return to in case of error in a sql statement
*/
-$err_url = 'tbl_sql.php' . PMA_URL_getCommon(
+$err_url = 'tbl_sql.php' . URL::getCommon(
array(
'db' => $db, 'table' => $table
)