issue #432 permission changes lost editing webpage (and other non-post items)

This commit is contained in:
friendica 2014-05-04 17:10:33 -07:00
parent 3da4656e41
commit fc550ae330
2 changed files with 11 additions and 6 deletions

View file

@ -1971,8 +1971,6 @@ function item_store($arr,$allow_exec = false) {
function item_store_update($arr,$allow_exec = false) {
$d = array('item' => $arr, 'allow_exec' => $allow_exec);
call_hooks('item_store_update', $d );
$arr = $d['item'];

View file

@ -259,11 +259,17 @@ function item_post(&$a) {
}
if($orig_post) {
$str_group_allow = $orig_post['allow_gid'];
$str_contact_allow = $orig_post['allow_cid'];
$str_group_deny = $orig_post['deny_gid'];
$str_contact_deny = $orig_post['deny_cid'];
$str_group_allow = ((array_key_exists('group_allow',$_REQUEST))
? perms2str($_REQUEST['group_allow']) : $orig_post['allow_gid']);
$str_contact_allow = ((array_key_exists('contact_allow',$_REQUEST))
? perms2str($_REQUEST['contact_allow']) : $orig_post['allow_cid']);
$str_group_deny = ((array_key_exists('group_deny',$_REQUEST))
? perms2str($_REQUEST['group_deny']) : $orig_post['deny_gid']);
$str_contact_deny = ((array_key_exists('contact_deny',$_REQUEST))
? perms2str($_REQUEST['contact_deny']) : $orig_post['deny_cid']);
$location = $orig_post['location'];
$coord = $orig_post['coord'];
$verb = $orig_post['verb'];
@ -305,6 +311,7 @@ function item_post(&$a) {
$str_contact_deny = perms2str($_REQUEST['contact_deny']);
}
$location = notags(trim($_REQUEST['location']));
$coord = notags(trim($_REQUEST['coord']));
$verb = notags(trim($_REQUEST['verb']));