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

@@ -120,11 +120,11 @@ if (!$check_stop) {
$f = 'field_' . md5($key);
$t_fval = (isset($$f) ? $$f : null);
if (isset($t_fval['multi_edit']) && isset($t_fval['multi_edit'][$enc_primary_key])) {
$fval = &$t_fval['multi_edit'][$enc_primary_key];
} else {
$fval = &$t_fval;
$fval = null;
}
switch (strtolower($val)) {