diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php
index e9f9f39c191dfb4a6fc71780aade251339263acd..4172d47ba611da7d11f68ccbdf052e15439855bb 100644
--- a/lib/private/template/functions.php
+++ b/lib/private/template/functions.php
@@ -29,7 +29,7 @@ function print_unescaped($string) {
  * @param string|string[] $file the filename,
  * if an array is given it will add all scripts
  */
-function script($app, $file) {
+function script($app, $file = null) {
 	if(is_array($file)) {
 		foreach($file as $f) {
 			OC_Util::addScript($app, $f);
@@ -61,7 +61,7 @@ function vendor_script($app, $file = null) {
  * @param string|string[] $file the filename,
  * if an array is given it will add all styles
  */
-function style($app, $file) {
+function style($app, $file = null) {
 	if(is_array($file)) {
 		foreach($file as $f) {
 			OC_Util::addStyle($app, $f);