Changeset 872 for trunk/Common/Form/Form.php
- Timestamp:
- Apr 6, 2020, 9:59:59 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r871 r872 50 50 { 51 51 if (!array_key_exists($Index, $this->Values)) 52 $this->Values[$Index] = $Item['Default']; 52 { 53 if (isset($Item['Default'])) $this->Values[$Index] = $Item['Default']; 54 else $this->Values[$Index] = null; 55 } 53 56 } 54 57 }
Note:
See TracChangeset
for help on using the changeset viewer.