diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-11-27 08:13:34 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-11-27 08:13:34 +0000 |
| commit | e97273674b5f5cbbbaa12fdbaf47566e8aa4f7d1 (patch) | |
| tree | 8d0772e149b7ef0052b0293d791be550e06372ee | |
| parent | 3de784b044d88477190f5c0cd603eddcc0041f32 (diff) | |
use spread operator to avoid deprecation warning, fixes #4914
Closes #4914
Merge request studip/studip!3689
| -rw-r--r-- | app/controllers/course/timesrooms.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/course/timesrooms.php b/app/controllers/course/timesrooms.php index 9e189ca..06b5621 100644 --- a/app/controllers/course/timesrooms.php +++ b/app/controllers/course/timesrooms.php @@ -1810,7 +1810,7 @@ class Course_TimesroomsController extends AuthenticatedController if (Request::int('fromDialog')) { $this->redirect(...func_get_args()); } else { - call_user_func_array('parent::relocate', func_get_args()); + parent::relocate(...func_get_args()); } } |
