summaryrefslogtreecommitdiff
path: root/includes/model/ShiftEntry_model.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-21 19:37:42 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-21 20:12:35 +0100
commit915ce28feeb9104bf7854ccbd80caebb5dce4aaa (patch)
tree503a31809070fee875e82213d46b90fb0b2fcac9 /includes/model/ShiftEntry_model.php
parent9a3ad8883403949a59e8935497a548ec536f1d40 (diff)
Replaced " with '
Diffstat (limited to 'includes/model/ShiftEntry_model.php')
-rw-r--r--includes/model/ShiftEntry_model.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/model/ShiftEntry_model.php b/includes/model/ShiftEntry_model.php
index 87e186ac..d7810feb 100644
--- a/includes/model/ShiftEntry_model.php
+++ b/includes/model/ShiftEntry_model.php
@@ -46,7 +46,7 @@ function ShiftEntries_freeleaded_count()
*/
function ShiftEntries_by_shift($shift_id)
{
- return DB::select("
+ return DB::select('
SELECT
`User`.`Nick`,
`User`.`email`,
@@ -62,7 +62,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` = ?",
+ WHERE `ShiftEntry`.`SID` = ?',
[$shift_id]
);
}