From 54642a1e6bf96270831abba08ddb305ba81dd596 Mon Sep 17 00:00:00 2001 From: ta2edchimp Date: Fri, 25 Sep 2015 15:53:55 +0200 Subject: [PATCH] Bugfix, to actually use any other than the `default` theme. --- init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.php b/init.php index d8aedc3..0b30415 100644 --- a/init.php +++ b/init.php @@ -32,7 +32,7 @@ $app->config('debug', $BR_DEBUGMODE); // Theming ... -if (!defined('BR_THEME')) +if (defined('BR_THEME')) $theme = BR_THEME; if(!isset($theme) || empty($theme)) $theme = "default";