aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 4e34c6561..9e649ca81 100755
--- a/boot.php
+++ b/boot.php
@@ -721,8 +721,11 @@ class App {
function set_baseurl($url) {
- if(is_array($this->config) && array_key_exists('system',$this->config) &&
- array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) {
+ if(is_array($this->config)
+ && array_key_exists('system',$this->config)
+ && is_array($this->config['system'])
+ && array_key_exists('baseurl',$this->config['system'])
+ && strlen($this->config['system']['baseurl'])) {
$url = $this->config['system']['baseurl'];
}