diff options
-rw-r--r-- | modules-available/locationinfo/templates/frontend-summary.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/locationinfo/templates/frontend-summary.html b/modules-available/locationinfo/templates/frontend-summary.html index 0053d1ff..adb3ce39 100644 --- a/modules-available/locationinfo/templates/frontend-summary.html +++ b/modules-available/locationinfo/templates/frontend-summary.html @@ -466,7 +466,7 @@ var closeDate = new MyDate(); closeDate.setHours(tmp[i].HourClose); closeDate.setMinutes(tmp[i].MinutesClose); - if (openDate < now && closeDate > now) { + if (openDate <= now && closeDate > now) { return true; } } |