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:
authorMarc Delisle <marc@infomarc.info>2006-01-06 21:52:34 +0300
committerMarc Delisle <marc@infomarc.info>2006-01-06 21:52:34 +0300
commit306d83af035a6254ef06c2e5f86a7b635d3a2175 (patch)
treeac3827bf90e1b9fc0071bb63136d430aa5a908ed /pdf_schema.php
parentc16ac8b3c7e47f0a81462d6cc61ea13509f791e0 (diff)
display PDF schema did not work (missing dot)
Diffstat (limited to 'pdf_schema.php')
-rw-r--r--pdf_schema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf_schema.php b/pdf_schema.php
index ea90ab5f04..69d8a821fb 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -709,7 +709,7 @@ class PMA_RT_Table
//x and y
$sql = 'SELECT x, y FROM '
- . PMA_backquote($GLOBALS['cfgRelation']['db']) . PMA_backquote($cfgRelation['table_coords'])
+ . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
. ' AND table_name = \'' . PMA_sqlAddslashes($table_name) . '\''
. ' AND pdf_page_number = ' . $pdf_page_number;