diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-01-29 14:40:59 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-01-29 14:40:59 +0100 |
commit | 229f13adc0eca770c07646e56773f1aa93fee643 (patch) | |
tree | 6a7b41109f62e7733f66f9748e170d121c9a9fa2 /lib/private | |
parent | 609d5f2458a4cfa3a5077bbe0ecb95b974445a73 (diff) | |
download | nextcloud-server-229f13adc0eca770c07646e56773f1aa93fee643.tar.gz nextcloud-server-229f13adc0eca770c07646e56773f1aa93fee643.zip |
change order of issubdirectory() calls to avoid error messages for non-apps
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/l10n.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/l10n.php b/lib/private/l10n.php index 98665c84c55..1aa1dc5ea28 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -132,10 +132,10 @@ class OC_L10N implements \OCP\IL10N { $i18ndir = self::findI18nDir($app); // Localization is in /l10n, Texts are in $i18ndir // (Just no need to define date/time format etc. twice) - if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') - || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') + if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings') + || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') ) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG |