diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-08-19 10:01:49 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-08-21 14:59:15 +0200 |
| commit | df763f73d9e521c1d99637115efee97660fb9637 (patch) | |
| tree | b9dfc8d1ec2f41b507b9a2cad3244ee6105f6004 /lib | |
| parent | 53431f915e54e107f8e5683d3bbcb27de676e6a3 (diff) | |
fix variable access and storing of removed property, fixes #4485
Closes #4485
Merge request studip/studip!3271
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/classes/calendar/ICalendarImport.class.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/classes/calendar/ICalendarImport.class.php b/lib/classes/calendar/ICalendarImport.class.php index e78696d..fc026c0 100644 --- a/lib/classes/calendar/ICalendarImport.class.php +++ b/lib/classes/calendar/ICalendarImport.class.php @@ -352,7 +352,6 @@ class ICalendarImport $date->access = $properties['CLASS'] ?? 'PRIVATE'; $date->user_category = $properties['CATEGORIES']; $date->category = $properties['STUDIP_CATEGORY'] ?: 1; - $date->priority = $properties['PRIORITY'] ?? ''; $date->location = $properties['LOCATION']; if (is_array($properties['EXDATE'])) { foreach ($properties['EXDATE'] as $exdate) { |
