Changeset 747 for trunk/Common/Form/Form.php
- Timestamp:
- Sep 21, 2015, 12:12:26 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r738 r747 1 1 <?php 2 2 3 include_once(dirname(__FILE__).'/../Database.php');4 3 include_once(dirname(__FILE__).'/Types/Type.php'); 5 4 … … 232 231 foreach($this->Definition['Items'] as $Index => $Item) 233 232 { 234 if(!array_key_exists('ReadOnly', $Item)) $Item['ReadOnly'] = false; 235 if($Item['ReadOnly'] == false) 233 if(array_key_exists($Index, $this->Values)) 236 234 if(!array_key_exists($Item['Type'], $this->FormManager->FormTypes) or 237 235 (array_key_exists($Item['Type'], $this->FormManager->FormTypes) and
Note:
See TracChangeset
for help on using the changeset viewer.