Changeset 11368
- Timestamp:
- 09/08/08 07:41:10 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelPlugin/branches/1.3/lib/propel/form/sfFormPropel.class.php
r11150 r11368 86 86 * 87 87 * @param array $cultures An array of cultures 88 * @param string $nameFormat The format to use for widget name89 88 * @param string $decorator A HTML decorator for the embedded form 90 89 */ 91 public function embedI18n($cultures, $ nameFormat = null, $decorator = null)90 public function embedI18n($cultures, $decorator = null) 92 91 { 93 92 if (!$this->isI18n()) … … 102 101 foreach ($cultures as $culture) 103 102 { 104 $this->embedForm($culture, $i18n, $ nameFormat, $decorator);103 $this->embedForm($culture, $i18n, $decorator); 105 104 } 106 105 }