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-12-07 03:13:47 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-12-10 16:42:53 +0300
commit5733c1302f264b13528d9974d7f4149015f74379 (patch)
tree532ff3f87061fdb5b4259103958bb397e9d7b0d7 /db_tracking.php
parent5fc6631b8f8d43a6b65484ab8222822e069de0ed (diff)
Refactor Tracking::displayUntrackedTables method
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 85b282ed0b..d5fa0c7086 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -138,7 +138,7 @@ $untracked_tables = Tracking::getUntrackedTables($GLOBALS['db']);
// If untracked tables exist
if (count($untracked_tables) > 0) {
- Tracking::displayUntrackedTables(
+ echo Tracking::getHtmlForUntrackedTables(
$GLOBALS['db'], $untracked_tables, $url_query, $pmaThemeImage, $text_dir
);
}