mirror of
https://github.com/friendica/friendica
synced 2025-04-25 16:30:10 +00:00
funny behaviour with post permissions after recent changes
This commit is contained in:
parent
3789c288a7
commit
1d2fdb259e
2 changed files with 6 additions and 2 deletions
|
@ -1,11 +1,14 @@
|
|||
<?php
|
||||
|
||||
function can_write_wall(&$a,$owner) {
|
||||
|
||||
if((! (local_user())) && (! (remote_user())))
|
||||
return false;
|
||||
$uid = get_uid();
|
||||
if(($uid) && ($uid === $owner))
|
||||
|
||||
if(($uid) && ($uid === $owner)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `user`.`uid` = `contact`.`uid`
|
||||
WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
||||
|
@ -16,6 +19,7 @@ function can_write_wall(&$a,$owner) {
|
|||
intval(REL_BUD),
|
||||
intval(PAGE_COMMUNITY)
|
||||
);
|
||||
|
||||
if(count($r))
|
||||
return true;
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue