diff options
author | friendica <info@friendica.com> | 2013-05-19 20:16:05 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-19 20:16:05 -0700 |
commit | 1f921a51ae7c2b608e89a238e206ba5539eeb3c4 (patch) | |
tree | df2e61467be22668bb7a3eba3165ca21227a942d /boot.php | |
parent | f9fec7cf8f328f44a5550d50029ad115311eb45a (diff) | |
download | volse-hubzilla-1f921a51ae7c2b608e89a238e206ba5539eeb3c4.tar.gz volse-hubzilla-1f921a51ae7c2b608e89a238e206ba5539eeb3c4.tar.bz2 volse-hubzilla-1f921a51ae7c2b608e89a238e206ba5539eeb3c4.zip |
typo in auto permissions
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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']; } |