From: Morris Jobke Date: Tue, 4 Nov 2014 12:57:38 +0000 (+0100) Subject: fix shortcuts - underline instead of camelCase X-Git-Tag: v8.0.0alpha1~377^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7f4e447a5ffa04c113c16c7b1b5b8a47f86b3a4e;p=nextcloud-server.git fix shortcuts - underline instead of camelCase --- diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 0e2c5775c46..ca0c27a8078 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -45,7 +45,7 @@ function script($app, $file) { * @param string|string[] $file the filename, * if an array is given it will add all scripts */ -function vendorScript($app, $file) { +function vendor_script($app, $file) { if(is_array($file)) { foreach($file as $f) { OC_Util::addVendorScript($app, $f); @@ -77,7 +77,7 @@ function style($app, $file) { * @param string|string[] $file the filename, * if an array is given it will add all styles */ -function vendorStyle($app, $file) { +function vendor_style($app, $file) { if(is_array($file)) { foreach($file as $f) { OC_Util::addVendorStyle($app, $f);