Changeset 3254
- Timestamp:
- 08/04/2008 08:23:25 PM (4 months ago)
- Files:
-
- 1 modified
-
trunk/modules/forge/libraries/Forge.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/forge/libraries/Forge.php
r2701 r3254 37 37 * @return void 38 38 */ 39 public function __construct($action = '', $title = '', $method = NULL, $attr = array())39 public function __construct($action = NULL, $title = '', $method = NULL, $attr = array()) 40 40 { 41 41 // Set form attributes … … 157 157 { 158 158 $status = TRUE; 159 foreach ($this->inputs as $input) 159 160 $inputs = array_merge($this->hidden, $this->inputs); 161 162 foreach ($inputs as $input) 160 163 { 161 164 if ($input->validate() == FALSE)
