]> source.dussan.org Git - nextcloud-server.git/commitdiff
Applying the fix
authorLukas Reschke <lukas@statuscode.ch>
Mon, 2 Jul 2012 08:29:04 +0000 (10:29 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Mon, 2 Jul 2012 08:29:04 +0000 (10:29 +0200)
lib/l10n.php

index c0ecdbd1b705dd061d3c454e8327b62600649a83..1b761c47d55cf9823c907eb03fe38c653238c8f6 100644 (file)
@@ -100,7 +100,7 @@ class OC_L10N{
                                }
                        }
 
-                       if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')){
+                       if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) {
                                // Include the file, save the data from $CONFIG
                                include(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php');
                                if(isset($LOCALIZATIONS) && is_array($LOCALIZATIONS)){