fixed problem with time formating
This commit is contained in:
parent
362a287674
commit
834d36cc2f
|
@ -2910,7 +2910,7 @@ class windowsUser extends baseModule implements passwordService {
|
||||||
* @return String formatted value
|
* @return String formatted value
|
||||||
*/
|
*/
|
||||||
private function formatFileTime($value) {
|
private function formatFileTime($value) {
|
||||||
if (empty($value)) {
|
if (empty($value) || ($value == '-1')) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
$seconds = substr($value, 0, -7);
|
$seconds = substr($value, 0, -7);
|
||||||
|
|
Loading…
Reference in New Issue