From 2632875bab6376cd4ae5361676596ef004b13e6a Mon Sep 17 00:00:00 2001 From: anubis2814 <57196483+anubis2814@users.noreply.github.com> Date: Fri, 9 Jun 2023 16:07:11 -0400 Subject: [PATCH] Update src/Content/Widget.php Co-authored-by: Hypolite Petovan --- src/Content/Widget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Content/Widget.php b/src/Content/Widget.php index abb125027..c18a3041b 100644 --- a/src/Content/Widget.php +++ b/src/Content/Widget.php @@ -472,7 +472,7 @@ class Widget // Set the start and end date to the beginning of the month $cutoffday = $dthen; $thisday = substr($dnow, 4); - $nextday = date('Y-m-d', strtotime($dnow. ' + 1 day')); + $nextday = date('Y-m-d', strtotime($dnow . ' + 1 day')); $nextday = substr($nextday, 4); $dnow = substr($dnow, 0, 8) . '01'; $dthen = substr($dthen, 0, 8) . '01';