Changeset 4751
- Timestamp:
- 07/31/07 10:49:58 (1 year ago)
- Files:
-
- trunk/lib/helper/FormHelper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/helper/FormHelper.php
r4386 r4751 854 854 $options = _parse_attributes($options); 855 855 856 if (is_object($label) && method_exists($label, '__toString')) 857 { 858 $label = $label->__toString(); 859 } 860 856 861 return content_tag('label', $label, array_merge(array('for' => get_id_from_name($id, null)), $options)); 857 862 }