forked from friendica/friendica-addons
Merge pull request #160 from tugelbend/master
!isset() check stopped working, the empty check works (for now)
This commit is contained in:
commit
33c3435d3d
|
@ -500,7 +500,7 @@ function jappixmini_script(&$a,&$s) {
|
||||||
$nickname = json_encode($r[0]["username"]);
|
$nickname = json_encode($r[0]["username"]);
|
||||||
$groupchats = get_config('jappixmini','groupchats');
|
$groupchats = get_config('jappixmini','groupchats');
|
||||||
//if $groupchats has no value jappix_addon_start will produce a syntax error
|
//if $groupchats has no value jappix_addon_start will produce a syntax error
|
||||||
if(!isset($groupchats)){
|
if(empty($groupchats)){
|
||||||
$groupchats = "{}";
|
$groupchats = "{}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue