From fb976000914e291dce5d2ab61980149e8cec1a98 Mon Sep 17 00:00:00 2001
From: Jakob Sack <mail@jakobsack.de>
Date: Tue, 16 Jul 2013 22:27:55 +0200
Subject: [PATCH] Fix an error jenkins found

---
 lib/l10n/string.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/l10n/string.php b/lib/l10n/string.php
index 3cda5eab50..5b9dbaee8a 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];
-- 
GitLab