Changeset 8696
- Timestamp:
- 04/30/08 18:25:32 (5 months ago)
- Files:
-
- branches/1.1/lib/form/sfForm.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/form/sfForm.class.php
r8408 r8696 99 99 * Renders the widget schema associated with this form. 100 100 * 101 * @param array An array of HTML attributes 102 * 101 103 * @return string The rendered widget schema 102 104 */ 103 public function render( )104 { 105 return $this->getFormField()->render( );105 public function render($attributes = array()) 106 { 107 return $this->getFormField()->render($attributes); 106 108 } 107 109