merged branch franmomu/fix_const_in_anonymous_function (PR #6244)

This PR was merged into the 2.1 branch.

Commits
-------

a37e5e3 [Form] Fix const inside an anonymous function

Discussion
----------

[Form] Fix const inside an anonymous function for PHP5.3

Related with the comment in #6217

---------------------------------------------------------------------------

by lsmith77 at 2012-12-10T09:14:20Z

+1 .. would be good to get this merged ASAP // @fabpot @bschussek
This commit is contained in:
Fabien Potencier 2012-12-10 10:16:44 +01:00
commit d451933ca1

View File

@ -181,7 +181,7 @@ class DateType extends AbstractType
};
$format = function (Options $options) {
return $options['widget'] === 'single_text' ? self::HTML5_FORMAT : self::DEFAULT_FORMAT;
return $options['widget'] === 'single_text' ? DateType::HTML5_FORMAT : DateType::DEFAULT_FORMAT;
};
// BC until Symfony 2.3