summaryrefslogtreecommitdiff
path: root/includes/model/ShiftEntry_model.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-12-28 14:56:02 +0100
committerPhilip Häusler <msquare@notrademark.de>2014-12-28 14:56:02 +0100
commitca37de95daa065c25b7a4b227b539c18e713e00b (patch)
tree763ddb63b01919bf9f956bd0e464e7a04671df1d /includes/model/ShiftEntry_model.php
parent739eddefd512b2c7775d6f4831186317217fcfbc (diff)
fix shift update
Diffstat (limited to 'includes/model/ShiftEntry_model.php')
-rw-r--r--includes/model/ShiftEntry_model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/ShiftEntry_model.php b/includes/model/ShiftEntry_model.php
index 1579b93b..008531ff 100644
--- a/includes/model/ShiftEntry_model.php
+++ b/includes/model/ShiftEntry_model.php
@@ -16,7 +16,7 @@ function ShiftEntries_by_shift($shift_id) {
FROM `ShiftEntry`
JOIN `User` ON `ShiftEntry`.`UID`=`User`.`UID`
JOIN `AngelTypes` ON `ShiftEntry`.`TID`=`AngelTypes`.`id`
- WHERE `ShiftEntry`.`SID`='" . sql_escape($shift_id)) . "'";
+ WHERE `ShiftEntry`.`SID`='" . sql_escape($shift_id) . "'");
}
/**