When field is not set, it is not set :-) (bug #953295).

This commit is contained in:
Michal Čihař
2004-05-13 14:56:18 +00:00
parent 72b3f91917
commit c1107d6006
2 changed files with 4 additions and 2 deletions

View File

@@ -9,6 +9,8 @@ $Source$
* libraries/export/sql.php: Minor optimalisations. * libraries/export/sql.php: Minor optimalisations.
* sql.php, tbl_replace.php, libraries/display_tbl.lib.php: Use same code * sql.php, tbl_replace.php, libraries/display_tbl.lib.php: Use same code
for generating INSERT and UPDATE queries (also fixes bug #953250). for generating INSERT and UPDATE queries (also fixes bug #953250).
* tbl_replace_fields.php: When field is not set, it is not set :-) (bug
#953295).
2004-05-12 Marc Delisle <lem9@users.sourceforge.net> 2004-05-12 Marc Delisle <lem9@users.sourceforge.net>
* db_details_structure.php: bug #951143, undefined $header_url_qry * db_details_structure.php: bug #951143, undefined $header_url_qry

View File

@@ -124,7 +124,7 @@ if (!$check_stop) {
if (isset($t_fval['multi_edit']) && isset($t_fval['multi_edit'][$enc_primary_key])) { if (isset($t_fval['multi_edit']) && isset($t_fval['multi_edit'][$enc_primary_key])) {
$fval = &$t_fval['multi_edit'][$enc_primary_key]; $fval = &$t_fval['multi_edit'][$enc_primary_key];
} else { } else {
$fval = &$t_fval; $fval = null;
} }
switch (strtolower($val)) { switch (strtolower($val)) {