setlocale test is pointless on Windows

This commit is contained in:
Thomas Mueller 2013-02-05 15:46:55 +01:00
parent d8084c132e
commit ac11c842e6
1 changed files with 5 additions and 0 deletions

View File

@ -519,6 +519,11 @@ class OC_Util {
* Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server.
*/
public static function issetlocaleworking() {
// setlocale test is pointless on Windows
if (OC_Util::runningOnWindows() ) {
return true;
}
$result=setlocale(LC_ALL, 'en_US.UTF-8');
if($result==false) {
return(false);