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 /db_tracking.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 'db_tracking.php')
-rw-r--r--db_tracking.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 1b7d9bbc5b..9facdd6e91 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -6,7 +6,7 @@
* @package PhpMyAdmin
*/
use PhpMyAdmin\Response;
-use PMA\libraries\Tracker;
+use PhpMyAdmin\Tracker;
/**
* Run common work
@@ -42,7 +42,7 @@ list(
$tooltip_truename,
$tooltip_aliasname,
$pos
-) = PMA\libraries\Util::getDbInfo($db, isset($sub_part) ? $sub_part : '');
+) = PhpMyAdmin\Util::getDbInfo($db, isset($sub_part) ? $sub_part : '');
// Work to do?
// (here, do not use $_REQUEST['db] as it can be crafted)
@@ -113,8 +113,8 @@ $cfgRelation = PMA_getRelationsParam();
// Prepare statement to get HEAD version
$all_tables_query = ' SELECT table_name, MAX(version) as version FROM ' .
- PMA\libraries\Util::backquote($cfgRelation['db']) . '.' .
- PMA\libraries\Util::backquote($cfgRelation['tracking']) .
+ PhpMyAdmin\Util::backquote($cfgRelation['db']) . '.' .
+ PhpMyAdmin\Util::backquote($cfgRelation['tracking']) .
' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['db']) .
'\' ' .
' GROUP BY table_name' .
@@ -147,5 +147,5 @@ if (count($data['ddlog']) > 0) {
$log .= '# ' . $entry['date'] . ' ' . $entry['username'] . "\n"
. $entry['statement'] . "\n";
}
- echo PMA\libraries\Util::getMessage(__('Database Log'), $log);
+ echo PhpMyAdmin\Util::getMessage(__('Database Log'), $log);
}