Avoid warning if analyzing failed.
This commit is contained in:
@@ -11,6 +11,7 @@ $Source$
|
|||||||
#1325651).
|
#1325651).
|
||||||
* libraries/string.lib.php: Fix escaping detection on multi byte strings.
|
* libraries/string.lib.php: Fix escaping detection on multi byte strings.
|
||||||
* libraries/sql_query_form.lib.php: No warning if no db defined.
|
* libraries/sql_query_form.lib.php: No warning if no db defined.
|
||||||
|
* libraries/sqlparser.lib.php: Avoid warning if analyzing failed.
|
||||||
|
|
||||||
2005-10-17 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
2005-10-17 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* css/phpmyadmin.css.php: border around tabs bug #1326730
|
* css/phpmyadmin.css.php: border around tabs bug #1326730
|
||||||
|
@@ -1189,7 +1189,7 @@ if ($is_minimum_common == FALSE) {
|
|||||||
// for each table_ref alias, put the true name of the table
|
// for each table_ref alias, put the true name of the table
|
||||||
// in the corresponding select expressions
|
// in the corresponding select expressions
|
||||||
|
|
||||||
if (isset($current_table_ref) && ($seen_end_of_table_ref || $i == $size-1)) {
|
if (isset($current_table_ref) && ($seen_end_of_table_ref || $i == $size-1) && $subresult != $subresult_empty) {
|
||||||
for ($tr=0; $tr <= $current_table_ref; $tr++) {
|
for ($tr=0; $tr <= $current_table_ref; $tr++) {
|
||||||
$alias = $subresult['table_ref'][$tr]['table_alias'];
|
$alias = $subresult['table_ref'][$tr]['table_alias'];
|
||||||
$truename = $subresult['table_ref'][$tr]['table_true_name'];
|
$truename = $subresult['table_ref'][$tr]['table_true_name'];
|
||||||
|
Reference in New Issue
Block a user