From: Michael Date: Thu, 11 Jan 2018 22:07:41 +0000 (+0000) Subject: Bugfix: The name of the item owner was empty in notifications X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6f1b1aee4b18cabe24253b7550fc5a72789a5852;p=friendica.git Bugfix: The name of the item owner was empty in notifications --- diff --git a/include/enotify.php b/include/enotify.php index 51e25572d3..60c5b0ca77 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -147,7 +147,7 @@ function notification($params) $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'), '[url='.$params['source_link'].']'.$params['source_name'].'[/url]', $itemlink, - $p['author-name'], + $item['author-name'], $item_post_type); }