bug 661758

This commit is contained in:
Marc Delisle
2003-02-04 11:29:25 +00:00
parent 3397329b25
commit 1bb13b52ef
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2003-02-04 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: new faq entry about IE bug with http auth,
switching from one server to the other
* db_details_qbe.php3: bug 661758 (undefined offset when doing a qbe
and only table selected)
2003-02-03 Michal Cihar <nijel@users.sourceforge.net>
* libraries/display_tbl.lib.php3, tbl_change.php3: Show blob size (RFE

View File

@@ -891,7 +891,9 @@ if (isset($Field) && count($Field) > 0) {
$master = key($csize);
//echo 'kleinste Datei: ' . $master . "\n";
} else {
$master = $col_cand[0];
//$master = $col_cand[0];
reset($col_cand);
$master = current($col_cand);
//echo 'master ist der einzige Kandidat: ' . $master . "\n";
}
} // end if (exactly one where clause)