diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-08-27 17:57:59 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-08-27 17:57:59 +0200 |
commit | 1b82fb7349a7a4048755d92e757efc5dc227b227 (patch) | |
tree | e614f70f830ed518b185f22203f42c91aea36db0 /mod/events.php | |
parent | 092e7378cdaeefaa7b4a954bd865bba1960f01aa (diff) | |
parent | 7b28c42693ff41da61abe4974c7a0a7412b6d6e5 (diff) | |
download | volse-hubzilla-1b82fb7349a7a4048755d92e757efc5dc227b227.tar.gz volse-hubzilla-1b82fb7349a7a4048755d92e757efc5dc227b227.tar.bz2 volse-hubzilla-1b82fb7349a7a4048755d92e757efc5dc227b227.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'mod/events.php')
-rwxr-xr-x | mod/events.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/events.php b/mod/events.php index 15fed9df2..edb61a6cd 100755 --- a/mod/events.php +++ b/mod/events.php @@ -132,6 +132,10 @@ function events_post(&$a) { } return; } + + $created = $x[0]['created']; + $edited = datetime_convert(); + if($x[0]['allow_cid'] === '<' . $channel['channel_hash'] . '>' && $x[0]['allow_gid'] === '' && $x[0]['deny_cid'] === '' && $x[0]['deny_gid'] === '') { $share = false; @@ -150,6 +154,7 @@ function events_post(&$a) { } } else { + $created = $edited = datetime_convert(); if($share) { $str_group_allow = perms2str($_POST['group_allow']); $str_contact_allow = perms2str($_POST['contact_allow']); |