diff options
author | Friendika <info@friendika.com> | 2011-06-09 01:01:29 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-09 01:01:29 -0700 |
commit | 9203b48527050b0b4a17120a95b2b3202842d56d (patch) | |
tree | 5dbb1c0f7d11818357d68fcba7c43af38886359b /mod | |
parent | d371241e66c4a68ef45415ac7c4ffe5283b3bff0 (diff) | |
download | volse-hubzilla-9203b48527050b0b4a17120a95b2b3202842d56d.tar.gz volse-hubzilla-9203b48527050b0b4a17120a95b2b3202842d56d.tar.bz2 volse-hubzilla-9203b48527050b0b4a17120a95b2b3202842d56d.zip |
default event publish permissions = personal
Diffstat (limited to 'mod')
-rw-r--r-- | mod/events.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/events.php b/mod/events.php index b480b7f6b..af829c28d 100644 --- a/mod/events.php +++ b/mod/events.php @@ -54,6 +54,9 @@ function events_post(&$a) { $str_contact_deny = perms2str($_POST['contact_deny']); + // until publishing is ready + $str_contact_allow = '<' . local_user() . '>'; + if($event_id) { $r = q("UPDATE `event` SET `edited` = '%s', |