diff options
| author | David Siegfried <david.siegfried@uni-vechta.de> | 2023-09-11 13:01:02 +0000 |
|---|---|---|
| committer | David Siegfried <david.siegfried@uni-vechta.de> | 2023-09-11 13:01:02 +0000 |
| commit | be6111f3d76c58f2da2cd1d29948caae0118da71 (patch) | |
| tree | dee9b63d81f0eb730c04dfcf9690c91ca4172cee /app/controllers/course/enrolment.php | |
| parent | a3d5dec95aaa882fdf10f38ebf40d8b4adc08ea4 (diff) | |
prevent php8-warnings, closes #3170
Closes #3170
Merge request studip/studip!2147
Diffstat (limited to 'app/controllers/course/enrolment.php')
| -rw-r--r-- | app/controllers/course/enrolment.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/course/enrolment.php b/app/controllers/course/enrolment.php index a9ca351..275620d 100644 --- a/app/controllers/course/enrolment.php +++ b/app/controllers/course/enrolment.php @@ -74,7 +74,8 @@ class Course_EnrolmentController extends AuthenticatedController $this->relocate(URLHelper::getLink('dispatch.php/course/details', ['sem_id' => $this->course_id])); return; } - + $this->admission_error = ''; + $this->admission_form = ''; $this->course = Course::find($this->course_id); try { |
