diff options
author | redmatrix <git@macgirvin.com> | 2016-01-26 15:39:25 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-01-26 15:39:25 -0800 |
commit | 9c71b74d373001ac47add095fc204bddb25ee91d (patch) | |
tree | 70422b830b0e97cba30d503f3648e6b189e9b253 /include | |
parent | 535a54040f84bee6c90a24920cf861c2c307dfa4 (diff) | |
parent | 68030d12cfefa8982774cca9714b0c1eed7b9537 (diff) | |
download | volse-hubzilla-9c71b74d373001ac47add095fc204bddb25ee91d.tar.gz volse-hubzilla-9c71b74d373001ac47add095fc204bddb25ee91d.tar.bz2 volse-hubzilla-9c71b74d373001ac47add095fc204bddb25ee91d.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'include')
-rw-r--r-- | include/enotify.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/enotify.php b/include/enotify.php index 5bb53aa0e..c4c49c8ff 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -273,14 +273,14 @@ function notification($params) { $preamble = sprintf( t('%1$s, you\'ve received an new connection request from \'%2$s\' at %3$s'), $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, you\'ve received [zrl=%2$s]a new connection request[/zrl] from %3$s.'), $recip['channel_name'], - $itemlink, + $siteurl . '/connections/ifpending', '[zrl=' . $sender['xchan_url'] . ']' . $sender['xchan_name'] . '[/zrl]'); $body = sprintf( t('You may visit their profile at %s'),$sender['xchan_url']); $sitelink = t('Please visit %s to approve or reject the connection request.'); - $tsitelink = sprintf( $sitelink, $siteurl ); - $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>'); - $itemlink = $params['link']; + $tsitelink = sprintf( $sitelink, $siteurl . '/connections/ifpending'); + $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/connections/ifpending">' . $sitename . '</a>'); + $itemlink = $params['link']; } if ($params['type'] == NOTIFY_SUGGEST) { |