aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2026-03-23 11:56:01 +0000
committerMoritz Strohm <strohm@data-quest.de>2026-03-23 11:56:01 +0000
commitd14dc152074dca849decb54e649be00a389868f5 (patch)
tree791c73415340eec1e76d57cb66702624fc3f1d02 /app
parentdda96cbbdf9237d90297ed1559f0a4d27713b2ec (diff)
institute/schedule controller: removed permission check, fixes #6389HEADmainissue-6385
Closes #6389 Merge request studip/studip!4850
Diffstat (limited to 'app')
-rw-r--r--app/controllers/institute/schedule.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/controllers/institute/schedule.php b/app/controllers/institute/schedule.php
index 931bdb4..3aea4a9 100644
--- a/app/controllers/institute/schedule.php
+++ b/app/controllers/institute/schedule.php
@@ -1,19 +1,6 @@
<?php
class Institute_ScheduleController extends AuthenticatedController
{
- public function before_filter(&$action, &$args)
- {
- parent::before_filter($action, $args);
-
- if (Navigation::hasItem('/course/main')) {
- Navigation::activateItem('/course/main');
- }
-
- if (!$GLOBALS['perm']->have_studip_perm('autor', Context::getId())) {
- throw new AccessDeniedException();
- }
- }
-
public function index_action($institute_id)
{
PageLayout::setTitle(_('Veranstaltungs-Stundenplan'));