]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix shortcuts - underline instead of camelCase
authorMorris Jobke <hey@morrisjobke.de>
Tue, 4 Nov 2014 12:57:38 +0000 (13:57 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Tue, 4 Nov 2014 12:57:38 +0000 (13:57 +0100)
lib/private/template/functions.php

index 0e2c5775c4695886145d96b2711a74d1f4499926..ca0c27a80780eaf0822f05326ac1be8a0734b86a 100644 (file)
@@ -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);