mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Remove private key from event array in Event::store
This commit is contained in:
parent
4eaf0d76b0
commit
89e9cbb0b5
2 changed files with 6 additions and 6 deletions
|
@ -170,7 +170,7 @@ function events_post(App $a) {
|
|||
$datarray['allow_gid'] = $str_group_allow;
|
||||
$datarray['deny_cid'] = $str_contact_deny;
|
||||
$datarray['deny_gid'] = $str_group_deny;
|
||||
$datarray['private'] = (($private_event) ? 1 : 0);
|
||||
$datarray['private'] = $private_event;
|
||||
$datarray['id'] = $event_id;
|
||||
|
||||
if (intval($_REQUEST['preview'])) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue