typo in auto permissions
This commit is contained in:
parent
f9fec7cf8f
commit
1f921a51ae
7
boot.php
7
boot.php
@ -721,8 +721,11 @@ class App {
|
|||||||
|
|
||||||
function set_baseurl($url) {
|
function set_baseurl($url) {
|
||||||
|
|
||||||
if(is_array($this->config) && array_key_exists('system',$this->config) &&
|
if(is_array($this->config)
|
||||||
array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) {
|
&& 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'];
|
$url = $this->config['system']['baseurl'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -367,7 +367,7 @@ function zot_refresh($them,$channel = null) {
|
|||||||
intval(ABOOK_FLAG_SELF)
|
intval(ABOOK_FLAG_SELF)
|
||||||
);
|
);
|
||||||
if($z)
|
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']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user