Skip to content
Snippets Groups Projects
Commit fb976000 authored by Jakob Sack's avatar Jakob Sack
Browse files

Fix an error jenkins found

parent 69b175db
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment