Show time values in user time

This commit is contained in:
Nathan Gray 2011-06-16 15:14:14 +00:00
parent 28e6ff6920
commit 0514391fde

View File

@ -116,6 +116,11 @@ class historylog_widget
$cell['type'] = 'select';
}
}
// For all times, show time in user time
elseif ($type == 'date-time' && $value)
{
$value = egw_time::server2user($value);
}
if ($cell['type'] == 'label') $cell['no_lang'] = 'true';
return true;
}