summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/l10n/string.php2
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];