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 /sql.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 'sql.php')
-rw-r--r--sql.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql.php b/sql.php
index 0cb8b8fccc..7008e5403e 100644
--- a/sql.php
+++ b/sql.php
@@ -10,8 +10,8 @@
use PMA\libraries\config\PageSettings;
use PhpMyAdmin\Response;
use PhpMyAdmin\Sql;
-use PMA\libraries\URL;
-use PMA\libraries\Util;
+use PhpMyAdmin\Url;
+use PhpMyAdmin\Util;
/**
* Gets some core libraries
@@ -58,7 +58,7 @@ if (empty($goto)) {
if (! isset($err_url)) {
$err_url = (! empty($back) ? $back : $goto)
- . '?' . URL::getCommon(array('db' => $GLOBALS['db']))
+ . '?' . Url::getCommon(array('db' => $GLOBALS['db']))
. ((mb_strpos(' ' . $goto, 'db_') != 1
&& strlen($table) > 0)
? '&amp;table=' . urlencode($table)
@@ -186,7 +186,7 @@ if (isset($_POST['store_bkm'])) {
*/
if ($goto == 'sql.php') {
$is_gotofile = false;
- $goto = 'sql.php' . URL::getCommon(
+ $goto = 'sql.php' . Url::getCommon(
array(
'db' => $db,
'table' => $table,