diff options
author | friendica <info@friendica.com> | 2012-11-08 19:07:19 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-08 19:07:19 -0800 |
commit | 22841e15666a6678517cf7a1f8f8791dcd37e1a6 (patch) | |
tree | d67dcb866e78fdab995529615ff78396396c6ab1 /mod/notifications.php | |
parent | f66a3d26befeb9966d9059164864c49d1f5a7721 (diff) | |
download | volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.tar.gz volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.tar.bz2 volse-hubzilla-22841e15666a6678517cf7a1f8f8791dcd37e1a6.zip |
start implementing zot-id
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 8221dd7c3..7d861037c 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -149,7 +149,7 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/person-175.jpg"), '$fullname' => $rr['fname'], - '$url' => zrl($rr['furl']), + '$url' => zid($rr['furl']), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), @@ -199,7 +199,7 @@ function notifications_content(&$a) { '$fullname' => $rr['name'], '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), - '$url' => zrl($rr['url']), + '$url' => zid($rr['url']), '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], |