Changeset 311 for trunk/trax/vendor/trax/action_view
- Timestamp:
- 04/25/09 09:50:22 (3 years ago)
- Location:
- trunk/trax/vendor/trax/action_view
- Files:
-
- 2 modified
-
helpers.php (modified) (1 diff)
-
helpers/form_helper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_view/helpers.php
r308 r311 147 147 } 148 148 } 149 return $value;149 return stripslashes($value); 150 150 } 151 151 -
trunk/trax/vendor/trax/action_view/helpers/form_helper.php
r308 r311 196 196 $options = $this->add_default_name_and_id($options); 197 197 return $this->error_wrapping( 198 $this->tag("input", $options),199 @array_key_exists($this->attribute_name,200 (array)$this->object()->errors)201 ? true : false);198 $this->tag("input", $options), 199 @array_key_exists($this->attribute_name, (array)$this->object()->errors) 200 ? true : false 201 ); 202 202 } 203 203
