Development

#3764: sfFillInForm-regression.patch

You must first sign up to be able to contribute.

Ticket #3764: sfFillInForm-regression.patch

File sfFillInForm-regression.patch, 0.5 kB (added by FunkyM, 7 months ago)

Fix sfFillInForm regression causing warnings in strict standards mode

  • lib/vendor/symfony/lib/util/sfFillInForm.class.php

    old new  
    235235    { 
    236236      $return = &$values[$name]; 
    237237    } else { 
    238       $return = &sfToolkit::getArrayValueForPath($values, $name); 
     238      $return = sfToolkit::getArrayValueForPathByRef($values, $name); 
    239239    } 
    240240 
    241241    if ($shiftArray && is_array($return))