From 059af021fa62cca0d1a6b86097f23ce2eaacfec1 Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 25 Oct 2012 19:24:58 +0300 Subject: [PATCH] Core: Init Site module on frontend only. --- monstra/engine/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monstra/engine/core.php b/monstra/engine/core.php index 1a26358..1243b56 100644 --- a/monstra/engine/core.php +++ b/monstra/engine/core.php @@ -148,7 +148,7 @@ require_once(ENGINE . DS . 'site.php'); // Init site module - Site::init(); + if( ! BACKEND) Site::init(); }