]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix implementation of translation short cut
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 29 Oct 2014 09:58:10 +0000 (10:58 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Wed, 29 Oct 2014 09:58:10 +0000 (10:58 +0100)
lib/private/template/functions.php

index 8c94b7cf345bba08273206e77b95ad4eea6dc14d..dede604c01de2da44e8fd02b2054714c2879b63d 100644 (file)
@@ -58,17 +58,10 @@ function style($app, $file) {
 /**
  * Shortcut for adding translations to a page
  * @param string $app the appname
- * @param string|string[] $file the filename,
  * if an array is given it will add all styles
  */
-function translation($app, $file) {
-       if(is_array($file)) {
-               foreach($file as $f) {
-                       OC_Util::addStyle($app, $f);
-               }
-       } else {
-               OC_Util::addStyle($app, $file);
-       }
+function translation($app) {
+       OC_Util::addTranslations($app);
 }
 
 /**