diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-22 21:40:33 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-22 21:40:33 +0200 |
commit | 03581ef463184081f8faa3f86bb6d21ee8bbc66d (patch) | |
tree | f199ec40d897775a8dfcb1d1ace150de88ae51f3 /lib/l10n.php | |
parent | 37296b8b6dd7a1b96c3e4fa326995bf3747ac116 (diff) | |
download | nextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.tar.gz nextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.zip |
Correct a first issue Checkstyle is complaining about ...
This is BracketsNotRequired
Diffstat (limited to 'lib/l10n.php')
-rw-r--r-- | lib/l10n.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/l10n.php b/lib/l10n.php index 6667747b885..41c89a7d4b5 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -120,7 +120,7 @@ class OC_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'); + include strip_tags($i18ndir).strip_tags($lang).'.php'; if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; } @@ -128,7 +128,7 @@ class OC_L10N{ if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')) { // Include the file, save the data from $CONFIG - include(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php'); + include OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php'; if(isset($LOCALIZATIONS) && is_array($LOCALIZATIONS)) { $this->localizations = array_merge($this->localizations, $LOCALIZATIONS); } |