aboutsummaryrefslogtreecommitdiff
path: root/lib/raumzeit
diff options
context:
space:
mode:
authorDavid Siegfried <david.siegfried@uni-vechta.de>2024-03-15 15:40:30 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2024-03-15 15:40:30 +0000
commitc9244d1a2f101939e309e4b563bb3bf7bbb8bae5 (patch)
treed25c57df4784c0cdb0419a17e2e00b04d0175cda /lib/raumzeit
parent3624e4537bf7aba360aadd4213f0231740f8e65f (diff)
fixes #2735
Closes #2735 Merge request studip/studip!2670
Diffstat (limited to 'lib/raumzeit')
-rw-r--r--lib/raumzeit/SingleDate.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/raumzeit/SingleDate.class.php b/lib/raumzeit/SingleDate.class.php
index f998092..82a89db 100644
--- a/lib/raumzeit/SingleDate.class.php
+++ b/lib/raumzeit/SingleDate.class.php
@@ -147,9 +147,9 @@ class SingleDate
$after = $this->toString();
// logging
if ($before) {
- StudipLog::log("SINGLEDATE_CHANGE_TIME", $this->range_id, $before, $before . ' -> ' . $after);
+ StudipLog::log('SINGLEDATE_CHANGE_TIME', $this->range_id, $this->id, $before . ' -> ' . $after);
} else {
- StudipLog::log("SEM_ADD_SINGLEDATE", $this->range_id, $after);
+ StudipLog::log('SEM_ADD_SINGLEDATE', $this->range_id, $this->id, $after);
}
return true;