Changeset 1549
- Timestamp:
- 12/16/07 13:26:15 (8 months ago)
- Files:
-
- trunk/modules/forge/libraries/Form_Checklist.php (modified) (1 diff)
- trunk/modules/forge/libraries/Form_Input.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/modules/forge/libraries/Form_Checklist.php
r1522 r1549 63 63 $checklist .= '</ul>'; 64 64 65 return $checklist .$this->error_message();65 return $checklist; 66 66 } 67 67 trunk/modules/forge/libraries/Form_Input.php
r1548 r1549 271 271 return; 272 272 273 // Load POSTed value 274 $this->data['value'] = self::$input->post($this->name); 273 if ($name = $this->name) 274 { 275 // Load POSTed value, but only for named inputs 276 $this->data['value'] = self::$input->post($name); 277 } 275 278 276 279 if (is_string($this->data['value']))
