Backquote table name.
This commit is contained in:
@@ -8,6 +8,7 @@ $Source$
|
|||||||
2004-10-20 Michal Čihař <michal@cihar.com>
|
2004-10-20 Michal Čihař <michal@cihar.com>
|
||||||
* lang/czech: Update.
|
* lang/czech: Update.
|
||||||
* tbl_relation.php: Backquote table name (bug #1050441).
|
* tbl_relation.php: Backquote table name (bug #1050441).
|
||||||
|
* db_details_qbe.php: Backquote table name.
|
||||||
|
|
||||||
2004-10-19 Marc Delisle <lem9@users.sourceforge.net>
|
2004-10-19 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/database_interface.lib.php: bug #1041667, correctly
|
* libraries/database_interface.lib.php: bug #1041667, correctly
|
||||||
|
@@ -952,12 +952,12 @@ if (isset($Field) && count($Field) > 0) {
|
|||||||
if ($run > 5) {
|
if ($run > 5) {
|
||||||
|
|
||||||
foreach ($tab_left AS $tab) {
|
foreach ($tab_left AS $tab) {
|
||||||
$emerg .= ', ' . $tab;
|
$emerg .= ', ' . PMA_backquote($tab);
|
||||||
$tab_left = PMA_arrayShort($tab_left, $tab);
|
$tab_left = PMA_arrayShort($tab_left, $tab);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // end while
|
} // end while
|
||||||
$qry_from = $master . $emerg . $fromclause;
|
$qry_from = PMA_backquote($master) . $emerg . $fromclause;
|
||||||
} // end if ($cfgRelation['relwork'] && count($tab_all) > 0)
|
} // end if ($cfgRelation['relwork'] && count($tab_all) > 0)
|
||||||
|
|
||||||
} // end count($Field) > 0
|
} // end count($Field) > 0
|
||||||
|
Reference in New Issue
Block a user