aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xboot.php7
-rw-r--r--include/zot.php2
2 files changed, 6 insertions, 3 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'];
}
diff --git a/include/zot.php b/include/zot.php
index 608c3877d..2eb3b5eb0 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -367,7 +367,7 @@ function zot_refresh($them,$channel = null) {
intval(ABOOK_FLAG_SELF)
);
if($z)
- proc_run('php','include/notifier.php','permissions_update',$z[0]['abook_id']);
+ proc_run('php','include/notifier.php','permission_update',$z[0]['abook_id']);
}
}
}