diff options
author | friendica <info@friendica.com> | 2014-01-28 19:49:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-28 19:49:56 -0800 |
commit | d970c69f91b96b3ef40752a95ecec8ca8b11b62a (patch) | |
tree | aa2f3e20127655ac323f75377380458eeaa49488 /mod/dirprofile.php | |
parent | cc11535e34f1cc91251d7ca3f38ef38997774857 (diff) | |
download | volse-hubzilla-d970c69f91b96b3ef40752a95ecec8ca8b11b62a.tar.gz volse-hubzilla-d970c69f91b96b3ef40752a95ecec8ca8b11b62a.tar.bz2 volse-hubzilla-d970c69f91b96b3ef40752a95ecec8ca8b11b62a.zip |
online indication to the directory popup
Diffstat (limited to 'mod/dirprofile.php')
-rw-r--r-- | mod/dirprofile.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/dirprofile.php b/mod/dirprofile.php index 1593b014a..d88144f52 100644 --- a/mod/dirprofile.php +++ b/mod/dirprofile.php @@ -74,6 +74,9 @@ function dirprofile_init(&$a) { $qrlink = zid($rr['url']); $connect_link = ((local_user()) ? z_root() . '/follow?f=&url=' . urlencode($rr['address']) : ''); + $online = remote_online_status($rr['address']); + + if(in_array($rr['hash'],$contacts)) $connect_link = ''; @@ -151,6 +154,7 @@ function dirprofile_init(&$a) { '$photo' => $rr['photo_l'], '$alttext' => $rr['name'] . ' ' . $rr['address'], '$name' => $rr['name'], + '$online' => (($online) ? t('Online Now') : ''), '$details' => $pdesc . $details, '$profile' => $profile, '$address' => $rr['address'], |