bug 751787
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-06-10 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* db_details_qbe.php3: bug 751787, missing FROM part in query generator
|
||||||
|
|
||||||
2003-06-10 Michal Cihar <nijel@users.sourceforge.net>
|
2003-06-10 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* scripts/create-release.sh: Set correct permissions before releasing.
|
* scripts/create-release.sh: Set correct permissions before releasing.
|
||||||
* Documentation, config.inc.php3, db_details_export.php3, export.php3,
|
* Documentation, config.inc.php3, db_details_export.php3, export.php3,
|
||||||
|
@@ -1000,11 +1000,15 @@ if (isset($Field) && count($Field) > 0) {
|
|||||||
|
|
||||||
} // end count($Field) > 0
|
} // end count($Field) > 0
|
||||||
|
|
||||||
// Now let's see what we got
|
// In case relations are not defined, just generate the FROM clause
|
||||||
if (!empty($qry_from)) {
|
// from the list of tables, however we don't generate any JOIN
|
||||||
$encoded_qry .= urlencode('FROM ' . $qry_from . "\n");
|
|
||||||
echo 'FROM ' . htmlspecialchars($qry_from) . "\n";
|
if (empty($qry_from)) {
|
||||||
|
$qry_from = implode(', ', $tab_all);
|
||||||
}
|
}
|
||||||
|
// Now let's see what we got
|
||||||
|
$encoded_qry .= urlencode('FROM ' . $qry_from . "\n");
|
||||||
|
echo 'FROM ' . htmlspecialchars($qry_from) . "\n";
|
||||||
|
|
||||||
// 3. WHERE
|
// 3. WHERE
|
||||||
$qry_where = '';
|
$qry_where = '';
|
||||||
|
Reference in New Issue
Block a user