Skip to content
Snippets Groups Projects
Commit ab21c25e authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #6759 from owncloud/extstorage-smbtimezonefix

Fixed timezone issue with SMB storage
parents a2a5ed3f 1eb5ebd5
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ class smb {
// this put env is necessary to read the output of smbclient correctly
$old_locale = getenv('LC_ALL');
putenv('LC_ALL=en_US.UTF-8');
$output = popen (SMB4PHP_SMBCLIENT." -N {$auth} {$options} {$port} {$options} {$params} 2>/dev/null", 'r');
$output = popen ('TZ=UTC '.SMB4PHP_SMBCLIENT." -N {$auth} {$options} {$port} {$options} {$params} 2>/dev/null", 'r');
$gotInfo = false;
$info = array ();
$info['info']= array ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment