aboutsummaryrefslogtreecommitdiffstats
path: root/include/security.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/security.php')
-rw-r--r--include/security.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/security.php b/include/security.php
index 18107d5cb..4643de105 100644
--- a/include/security.php
+++ b/include/security.php
@@ -850,7 +850,7 @@ function zarIsDuty($wd=NULL, $hhmm=NULL, $op='isOpen') {
$isduty = get_config('system', 'register_duty_jso');
- if (!$isduty)
+ if (!$isduty)
return (bool)false;
is_null($wd) ? $wd = date('N') : '';
@@ -863,7 +863,7 @@ function zarIsDuty($wd=NULL, $hhmm=NULL, $op='isOpen') {
$wd === 0 ? $wd = 7 : '';
$duty = json_decode($isduty, true);
- if (!$duty)
+ if (!$duty)
return (bool)false;
switch ($op) {
@@ -883,7 +883,7 @@ function zarIsDuty($wd=NULL, $hhmm=NULL, $op='isOpen') {
}
return $dutyis;
break;
-
+
case 'nextOpen':
/**
* Look for next period opens
@@ -923,7 +923,7 @@ function zarIsDuty($wd=NULL, $hhmm=NULL, $op='isOpen') {
if ($dd >= $myd && $dh >= $myh && !$tf)
return array($dd, $dh);
else
- continue;
+ continue;
}
}
return $is1; // false or array
@@ -933,7 +933,7 @@ function zarIsDuty($wd=NULL, $hhmm=NULL, $op='isOpen') {
//
break;
}
-
+
}