fixed problem with time formating

This commit is contained in:
Roland Gruber 2015-11-16 19:48:58 +00:00
parent 362a287674
commit 834d36cc2f
1 changed files with 1 additions and 1 deletions

View File

@ -2910,7 +2910,7 @@ class windowsUser extends baseModule implements passwordService {
* @return String formatted value
*/
private function formatFileTime($value) {
if (empty($value)) {
if (empty($value) || ($value == '-1')) {
return '';
}
$seconds = substr($value, 0, -7);