summaryrefslogtreecommitdiffstats
path: root/lib/private/template/functions.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-11-04 13:57:38 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-11-04 13:57:38 +0100
commit7f4e447a5ffa04c113c16c7b1b5b8a47f86b3a4e (patch)
treea3c0f389e28c27b985a67508ed7121c4f67ac2cb /lib/private/template/functions.php
parentfde8ef065531e71060fa59f3cb8a42dc7a07f276 (diff)
downloadnextcloud-server-7f4e447a5ffa04c113c16c7b1b5b8a47f86b3a4e.tar.gz
nextcloud-server-7f4e447a5ffa04c113c16c7b1b5b8a47f86b3a4e.zip
fix shortcuts - underline instead of camelCase
Diffstat (limited to 'lib/private/template/functions.php')
-rw-r--r--lib/private/template/functions.php4
1 files changed, 2 insertions, 2 deletions
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);