Don't mask errors
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 20 Dec 2010 17:18:47 +0000 (10:18 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 20 Dec 2010 17:26:55 +0000 (10:26 -0700)
framework/Core/lib/Horde/Registry.php

index c4c88ab..94c2472 100644 (file)
@@ -2204,9 +2204,9 @@ class Horde_Registry
 
         $lang_charset = $lang . '.UTF-8';
         setlocale(LC_ALL, $lang_charset);
-        @putenv('LC_ALL=' . $lang_charset);
-        @putenv('LANG=' . $lang_charset);
-        @putenv('LANGUAGE=' . $lang_charset);
+        putenv('LC_ALL=' . $lang_charset);
+        putenv('LANG=' . $lang_charset);
+        putenv('LANGUAGE=' . $lang_charset);
 
         if ($changed) {
             $this->rebuild();