]> git.mxchange.org Git - friendica.git/commitdiff
Use default user permissions when creating new event
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 5 Jan 2020 22:09:05 +0000 (17:09 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 5 Jan 2020 22:09:14 +0000 (17:09 -0500)
mod/events.php

index d6701ce44879f33efb7ce58ce0175f5bc541a11d..d1d3d758b45955e98b6ac31f62a31f589c665748 100644 (file)
@@ -18,6 +18,7 @@ use Friendica\DI;
 use Friendica\Model\Event;
 use Friendica\Model\Item;
 use Friendica\Model\Profile;
+use Friendica\Model\User;
 use Friendica\Module\Security\Login;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Strings;
@@ -427,7 +428,7 @@ function events_content(App $a)
        // Passed parameters overrides anything found in the DB
        if (in_array($mode, ['edit', 'new', 'copy'])) {
                if (empty($orig_event)) {
-                       $orig_event = [];
+                       $orig_event = User::getById(local_user(), ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid']);;
                }
 
                // In case of an error the browser is redirected back here, with these parameters filled in with the previous values