mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Merge pull request #4303 from annando/bugfix-public-commenting
Bugfix: Commenting on public posts was not possible anymore
This commit is contained in:
commit
4af9c26fd3
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ function item_post(App $a) {
|
|||
}
|
||||
|
||||
$user = dba::selectFirst('user', [], ['uid' => $profile_uid]);
|
||||
if (!DBM::is_result($user) && !$orig_post) {
|
||||
if (!DBM::is_result($user) && !$parent) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue