do not convert empty values, otherwise we will get current date or 1970-01-01 instead

This commit is contained in:
Ralf Becker 2014-10-07 10:19:21 +00:00
parent 21a1f6ea64
commit cf96d4e82d

View File

@ -101,6 +101,8 @@ class etemplate_widget_date extends etemplate_widget_transformer
*/
public function format_date($value)
{
if (!$value) return $value; // otherwise we will get current date or 1970-01-01 instead of an empty value
if ($this->attrs['dataformat'] && !is_numeric($value))
{
$date = date_create_from_format($this->attrs['dataformat'], $value, egw_time::$user_timezone);