Changeset 2653
- Timestamp:
- 06/30/08 04:22:49 (20 months ago)
- Files:
-
- 1 modified
-
branches/release-41/php/lib/mtdb_base.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-41/php/lib/mtdb_base.php
r2606 r2653 3076 3076 foreach ($cfrow as $cffield => $cfvalue) { 3077 3077 if (preg_match("/^${field_prefix}v/", $cffield)) { 3078 if (isset($cfvalue)) { 3078 // FIXME: Some DBMS can't distinguish NULL from empty string. 3079 // Treat custom field that has empty string the same as field with no data. 3080 if (isset($cfvalue) && $cfvalue) { 3079 3081 $value = $cfvalue; 3080 3082 $field = $cffield;
