fix shortcuts - underline instead of camelCase

This commit is contained in:
Morris Jobke 2014-11-04 13:57:38 +01:00
parent fde8ef0655
commit 7f4e447a5f
1 changed files with 2 additions and 2 deletions

View 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);