Skip to content
Snippets Groups Projects
Commit 9323ba53 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #11940 from owncloud/fix-underline-convention

fix shortcuts - underline instead of camelCase
parents 9e045d6c 7f4e447a
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment