From: Michael Date: Wed, 10 Jan 2018 21:08:23 +0000 (+0000) Subject: Commenting on postings from tags on the network page does work now X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0ef83b23839045662da7677f82162a5b129a29f5;p=friendica.git Commenting on postings from tags on the network page does work now --- diff --git a/src/Object/Post.php b/src/Object/Post.php index 97768bf56c..61200b58e9 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -769,7 +769,7 @@ class Post extends BaseObject $uid = $conv->getProfileOwner(); $parent_uid = $this->getDataValue('uid'); - if (!empty($parent_uid) && empty($uid) && ($uid != $parent_uid)) { + if (!is_null($parent_uid) && ($uid != $parent_uid)) { $uid = $parent_uid; }