diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-09-07 14:05:51 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-09-07 14:08:29 +0200 |
commit | 5e55b4d6e77b91e29838d26765e7f1bd55fe6bbd (patch) | |
tree | 33bfcfcc47fe61dd6f7586cf96091e470ffee6e3 /lib/l10n.php | |
parent | 386d1ac49f0e759c3ed7f23f2df86b721a72b9d1 (diff) | |
download | nextcloud-server-5e55b4d6e77b91e29838d26765e7f1bd55fe6bbd.tar.gz nextcloud-server-5e55b4d6e77b91e29838d26765e7f1bd55fe6bbd.zip |
Whitespace fixes in lib
Diffstat (limited to 'lib/l10n.php')
-rw-r--r-- | lib/l10n.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/l10n.php b/lib/l10n.php index 0421e4eba88..f8274126136 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -113,9 +113,9 @@ class OC_L10N{ $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/') || - OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || + 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.'/lib/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG include(strip_tags($i18ndir).strip_tags($lang).'.php'); |