From d4a1264ae69d1f7760919098389c19a93df60a21 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Mon, 6 Feb 2012 17:49:05 +1100 Subject: [PATCH] config[blotter] = false when unset --- inc/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/functions.php b/inc/functions.php index 68c513dd..3d4b837b 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -38,6 +38,9 @@ date_default_timezone_set($config['timezone']); + if(!isset($config['blotter'])) + $config['blotter'] = false; + if(!isset($config['post_url'])) $config['post_url'] = $config['root'] . $config['file_post'];