diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-05-14 17:38:32 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-05-16 18:53:46 +0200 |
commit | 2faae817f183e82975251d5023417e2f331971d3 (patch) | |
tree | 8a2071a6b349ec9df16613f341620f14c21a066b | |
parent | 6d20fe4012f9572430f993f86eba6640d66cebbc (diff) | |
download | nextcloud-server-2faae817f183e82975251d5023417e2f331971d3.tar.gz nextcloud-server-2faae817f183e82975251d5023417e2f331971d3.zip |
Template: Fix var name
-rw-r--r-- | lib/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/template.php b/lib/template.php index 1e8b0adc75f..641c441c740 100644 --- a/lib/template.php +++ b/lib/template.php @@ -431,7 +431,7 @@ class OC_Template{ }elseif($page->appendIfExist('cssfiles', OC::$SERVERROOT, OC::$WEBROOT, "core/$style.css" )) { }else{ - echo('css file not found: style:'.$script.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT); + echo('css file not found: style:'.$style.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT); die(); } } |