diff options
author | Jakob Sack <mail@jakobsack.de> | 2013-07-16 22:27:55 +0200 |
---|---|---|
committer | Jakob Sack <mail@jakobsack.de> | 2013-07-16 22:27:55 +0200 |
commit | fb976000914e291dce5d2ab61980149e8cec1a98 (patch) | |
tree | 9290f4fd0392ef38ba4bfacc8d8b1294a1e09a84 | |
parent | 69b175dbf9979af05a51a3b1d7e349c53a2a6d9d (diff) | |
download | nextcloud-server-fb976000914e291dce5d2ab61980149e8cec1a98.tar.gz nextcloud-server-fb976000914e291dce5d2ab61980149e8cec1a98.zip |
Fix an error jenkins found
-rw-r--r-- | lib/l10n/string.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 3cda5eab506..5b9dbaee8a2 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -24,7 +24,7 @@ class OC_L10N_String{ if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { $id = $localizations["selectplural"]( $count ); - $text = $translations[$this->text][$id] + $text = $translations[$this->text][$id]; } else{ $text = $translations[$this->text]; |