From: Marcel Werk Date: Fri, 27 Apr 2012 17:46:24 +0000 (+0200) Subject: Changed the default value for sandbox mode to false X-Git-Tag: 2.0.0_Beta_1~1140 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9a0b88fa3c1506e665b5d44ce03595f27c4c5811;p=GitHub%2FWoltLab%2FWCF.git Changed the default value for sandbox mode to false --- diff --git a/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php b/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php index 0d410a9723..a1ff1fe5ba 100755 --- a/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php +++ b/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php @@ -551,7 +551,7 @@ class TemplateEngine extends SingletonFactory { * @param integer $packageID * @return string output */ - public function fetch($templateName, array $variables = array(), $sandbox = true, $packageID = PACKAGE_ID) { + public function fetch($templateName, array $variables = array(), $sandbox = false, $packageID = PACKAGE_ID) { // enable sandbox if ($sandbox) { $this->enableSandbox();