Development

Changeset 11364

You must first sign up to be able to contribute.

Changeset 11364

Show
Ignore:
Timestamp:
09/07/08 20:21:09 (3 months ago)
Author:
FabianLange
Message:

1.2: sfFormPropel did pass incorrect parameters to sfForm since r7053. fixes #4194

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPropelPlugin/trunk/lib/propel/form/sfFormPropel.class.php

    r11357 r11364  
    8686   * 
    8787   * @param array   $cultures   An array of cultures 
    88    * @param string  $nameFormat The format to use for widget name 
    8988   * @param string  $decorator  A HTML decorator for the embedded form 
    9089   */ 
    91   public function embedI18n($cultures, $nameFormat = null, $decorator = null) 
     90  public function embedI18n($cultures, $decorator = null) 
    9291  { 
    9392    if (!$this->isI18n()) 
     
    102101    foreach ($cultures as $culture) 
    103102    { 
    104       $this->embedForm($culture, $i18n, $nameFormat, $decorator); 
     103      $this->embedForm($culture, $i18n, $decorator); 
    105104    } 
    106105  }