Changeset 1532
- Timestamp:
- 12/14/07 12:23:37 (7 months ago)
- Files:
-
- trunk/modules/forge/libraries/Form_Checkbox.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/modules/forge/libraries/Form_Checkbox.php
r1522 r1532 18 18 { 19 19 // Return the value if the checkbox is checked 20 return $this->data['checked'] ? $this->data['value'] : NULL;20 return $this->data['checked'] ? $this->data['value'] : FALSE; 21 21 } 22 22
