summaryrefslogtreecommitdiff
path: root/includes/model/Stats.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/model/Stats.php')
-rw-r--r--includes/model/Stats.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/includes/model/Stats.php b/includes/model/Stats.php
index 5618cdc6..c6208dc3 100644
--- a/includes/model/Stats.php
+++ b/includes/model/Stats.php
@@ -54,9 +54,7 @@ function stats_angels_needed_three_hours()
- (SELECT COUNT(*) FROM `ShiftEntry` WHERE `ShiftEntry`.`SID`=`Shifts`.`SID` AND `freeloaded`=0)
) as `count`
FROM `Shifts`
- WHERE ((`end` > ? AND `end` < ?) OR (`start` > ? AND `start` < ?))", [
- $now,
- $in3hours,
+ WHERE `end` > ? AND `start` < ?", [
$now,
$in3hours
]);
@@ -79,9 +77,7 @@ function stats_angels_needed_for_nightshifts()
- (SELECT COUNT(*) FROM `ShiftEntry` WHERE `ShiftEntry`.`SID`=`Shifts`.`SID` AND `freeloaded`=0)
) as `count`
FROM `Shifts`
- WHERE ((`end` > ? AND `end` < ?) OR (`start` > ? AND `start` < ?))", [
- $night_start,
- $night_end,
+ WHERE `end` > ? AND `start` < ?", [
$night_start,
$night_end
]);