From 87fefcae6234cc52db0f5512008afecd9d882314 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 5 Jun 2011 08:49:06 +0200 Subject: [PATCH] [Form] removed obsolete comment --- .../Component/Form/Extension/Core/ChoiceList/MonthChoiceList.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Component/Form/Extension/Core/ChoiceList/MonthChoiceList.php b/src/Symfony/Component/Form/Extension/Core/ChoiceList/MonthChoiceList.php index 40df32e533..f38c10ce3e 100644 --- a/src/Symfony/Component/Form/Extension/Core/ChoiceList/MonthChoiceList.php +++ b/src/Symfony/Component/Form/Extension/Core/ChoiceList/MonthChoiceList.php @@ -45,7 +45,6 @@ class MonthChoiceList extends PaddedChoiceList $this->formatter->setPattern($matches[0]); foreach ($this->choices as $choice => $value) { - // It's important to specify the first day of the month here! $this->choices[$choice] = $this->formatter->format(gmmktime(0, 0, 0, $value, 15)); }