diff options
author | friendica <info@friendica.com> | 2014-01-09 16:23:58 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-09 16:23:58 -0800 |
commit | a78d9b973d6391e3a15f8a3ff2fe586a4bffe08c (patch) | |
tree | e5367a6951861eb88887c183e97ff0f3c1ba939a /include/enotify.php | |
parent | db8ebc9f375478bddc0f48d972e3acfbde80685a (diff) | |
download | volse-hubzilla-a78d9b973d6391e3a15f8a3ff2fe586a4bffe08c.tar.gz volse-hubzilla-a78d9b973d6391e3a15f8a3ff2fe586a4bffe08c.tar.bz2 volse-hubzilla-a78d9b973d6391e3a15f8a3ff2fe586a4bffe08c.zip |
simplify permalink selection logic
Diffstat (limited to 'include/enotify.php')
-rw-r--r-- | include/enotify.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/enotify.php b/include/enotify.php index 49d690511..e0991257f 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -94,6 +94,9 @@ function notification($params) { if($params['type'] == NOTIFY_COMMENT) { // logger("notification: params = " . print_r($params, true), LOGGER_DEBUG); + $itemlink = $params['link']; + + // ignore like/unlike activity on posts - they probably require a sepearate notification preference if(array_key_exists('item',$params) && (! visible_activity($params['item']))) @@ -171,7 +174,6 @@ function notification($params) { $sitelink = t('Please visit %s to view and/or reply to the conversation.'); $tsitelink = sprintf( $sitelink, $siteurl ); $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '">' . $sitename . '</a>'); - $itemlink = $params['link']; } if($params['type'] == NOTIFY_WALL) { |