diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2022-09-28 14:24:20 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2022-09-28 14:24:20 +0000 |
| commit | e75c08bedd60a6674d22ce3e2ec57b5a5f1d85eb (patch) | |
| tree | 2d9cf000153360bdc9e1841693406f3a3b1d58ae /app/controllers/event_log.php | |
| parent | 1e6f3d59c1989dc0da68d3200090cb4768ab3094 (diff) | |
fix for BIESt #1118
Merge request studip/studip!676
Diffstat (limited to 'app/controllers/event_log.php')
| -rw-r--r-- | app/controllers/event_log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/event_log.php b/app/controllers/event_log.php index 9638b09..f1d19c6 100644 --- a/app/controllers/event_log.php +++ b/app/controllers/event_log.php @@ -42,10 +42,10 @@ class EventLogController extends AuthenticatedController $this->search = trim(Request::get('search')); $this->log_actions = LogAction::getUsed(true); $this->types = $this->event_log->get_object_types(); + $this->type = Request::option('type'); // restrict log events to object scope if ($this->search) { - $this->type = Request::option('type'); $objects = $this->event_log->find_objects( $this->type, $this->search, |
