Changeset 529 for trunk/Common/Form/Form.php
- Timestamp:
- Apr 23, 2013, 7:12:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r502 r529 138 138 array('Value' => $DbRow[$Index], 'Name' => $Index, 139 139 'Type' => $Item['Type'], 'Values' => $this->Values)); 140 141 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');142 140 } 143 141 } … … 172 170 $Values[$Index] = $this->FormManager->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters); 173 171 if(($Item['Type'] == 'Password') and ($Values[$Index] == '')) unset($Values[$Index]); 174 175 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');176 172 } 177 173 } … … 182 178 } else 183 179 $DbResult = $this->Database->update($this->Definition['Table'], 'Id='.$Id, $Values); 184 //echo($Database->LastQuery);185 180 } 186 181 … … 255 250 var $Database; 256 251 var $Type; 252 var $RootURL; 257 253 258 254 function __construct($Database)
Note:
See TracChangeset
for help on using the changeset viewer.