summaryrefslogtreecommitdiffstats
path: root/inc/render.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2014-06-11 14:31:09 +0200
committerSimon Rettberg2014-06-11 14:31:09 +0200
commit62d6349c790076ec26edd6e10d617b2f4c385e8b (patch)
treeb2884200b75b34994ddfcfef06bff3d127427e73 /inc/render.inc.php
parentReboot functionality on system status page (diff)
downloadslx-admin-62d6349c790076ec26edd6e10d617b2f4c385e8b.tar.gz
slx-admin-62d6349c790076ec26edd6e10d617b2f4c385e8b.tar.xz
slx-admin-62d6349c790076ec26edd6e10d617b2f4c385e8b.zip
Minor bug fixes and removal of dead code
Diffstat (limited to 'inc/render.inc.php')
-rw-r--r--inc/render.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/render.inc.php b/inc/render.inc.php
index 2d69c322..802944f4 100644
--- a/inc/render.inc.php
+++ b/inc/render.inc.php
@@ -164,7 +164,7 @@ class Render
*/
public static function parse($template, $params = false)
{
- if (is_array($params) || $params === false)
+ if (is_array($params) || $params === false || is_null($params))
$params['token'] = Session::get('token');
return self::$mustache->render(self::getTemplate($template), $params);
}