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:
authorChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-09-16 13:11:47 +0400
committerChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-09-16 13:11:47 +0400
commit6971295e9616aa6809ffd58dceb6e6735090f57d (patch)
treeff5bcbc0be756673415a877706482622ce704c11 /tbl_printview.php
parente6894be57f5735ab525a2f758ad842aacb8ef7bc (diff)
Renamed PMA_CommonFunctions::getInstance()-> with PMA_Util::
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 7ea8fcc8e0..f6473d2018 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -102,7 +102,7 @@ foreach ($the_tables as $key => $table) {
$show_create_table = PMA_DBI_fetch_value(
'SHOW CREATE TABLE ' . PMA_Util::backquote($db) . '.'
- . PMA_CommonFunctions::getInstance()->backquote($table),
+ . PMA_Util::backquote($table),
0, 1
);
$analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));