Commenting on postings from tags on the network page does work now

This commit is contained in:
Michael 2018-01-10 21:08:23 +00:00
parent 1549b1d8c1
commit 0ef83b2383
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ class Post extends BaseObject
$uid = $conv->getProfileOwner(); $uid = $conv->getProfileOwner();
$parent_uid = $this->getDataValue('uid'); $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; $uid = $parent_uid;
} }