diff options
author | Mario <mario@mariovavti.com> | 2022-10-21 11:20:23 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-21 11:20:23 +0200 |
commit | 5edd13c6bb89c7434d8437f8cc74c038371fdbf8 (patch) | |
tree | bc7f29762e9aa306f80b4881128607a49b5bb74f /Zotlabs/Module/Viewconnections.php | |
parent | 7ca289edd0d568a51dfdf225a5ef0e9663c38838 (diff) | |
download | volse-hubzilla-5edd13c6bb89c7434d8437f8cc74c038371fdbf8.tar.gz volse-hubzilla-5edd13c6bb89c7434d8437f8cc74c038371fdbf8.tar.bz2 volse-hubzilla-5edd13c6bb89c7434d8437f8cc74c038371fdbf8.zip |
fix various issues
Diffstat (limited to 'Zotlabs/Module/Viewconnections.php')
-rw-r--r-- | Zotlabs/Module/Viewconnections.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Viewconnections.php b/Zotlabs/Module/Viewconnections.php index d54f61c36..d321ca8fe 100644 --- a/Zotlabs/Module/Viewconnections.php +++ b/Zotlabs/Module/Viewconnections.php @@ -37,7 +37,7 @@ class Viewconnections extends \Zotlabs\Web\Controller { if(! $_REQUEST['aj']) $_SESSION['return_url'] = \App::$query_string; - + $o = ''; $is_owner = ((local_channel() && local_channel() == \App::$profile['uid']) ? true : false); $abook_flags = " and abook_pending = 0 and abook_self = 0 and abook_blocked = 0 and abook_ignored = 0 "; @@ -118,12 +118,12 @@ class Viewconnections extends \Zotlabs\Web\Controller { if($_REQUEST['aj']) { if($contacts) { - $o = replace_macros(get_markup_template('viewcontactsajax.tpl'),array( + $o .= replace_macros(get_markup_template('viewcontactsajax.tpl'),array( '$contacts' => $contacts )); } else { - $o = '<div id="content-complete"></div>'; + $o .= '<div id="content-complete"></div>'; } echo $o; killme(); |