Open pawaclawczyk opened 10 years ago
The options "data_timezone" and "user_timezone" in DateType, DateTimeType and TimeType were deprecated and will be removed in Symfony 2.3. They were renamed to "model_timezone" and "view_timezone".
DateType
DateTimeType
TimeType
Before:
$builder->add('scheduledFor', 'date', array( 'data_timezone' => 'UTC', 'user_timezone' => 'America/New_York', ));
After:
$builder->add('scheduledFor', 'date', array( 'model_timezone' => 'UTC', 'view_timezone' => 'America/New_York', ));
The options "data_timezone" and "user_timezone" in
DateType
,DateTimeType
andTimeType
were deprecated and will be removed in Symfony 2.3. They were renamed to "model_timezone" and "view_timezone".Before:
After: