summaryrefslogtreecommitdiff
path: root/includes/model/Shifts_model.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-09-07 00:41:48 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2019-09-18 04:27:56 +0200
commitd71b27b78b29a2ed725a6e631bf8085bde257f18 (patch)
treebfb480bfdaa7369e51973bda31f75b3adfe45b99 /includes/model/Shifts_model.php
parent64c4743f57c2444a2e40ab4f115cbc6bdc9bcde1 (diff)
Shifts: Save time as worklog if past shift gets deleted
Diffstat (limited to 'includes/model/Shifts_model.php')
-rw-r--r--includes/model/Shifts_model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/Shifts_model.php b/includes/model/Shifts_model.php
index 6bb17cf2..2408eb49 100644
--- a/includes/model/Shifts_model.php
+++ b/includes/model/Shifts_model.php
@@ -508,8 +508,8 @@ function Shift_delete_by_psid($shift_psid)
*/
function Shift_delete($shift_id)
{
- DB::delete('DELETE FROM `Shifts` WHERE `SID`=?', [$shift_id]);
mail_shift_delete(Shift($shift_id));
+ DB::delete('DELETE FROM `Shifts` WHERE `SID`=?', [$shift_id]);
}
/**