From: Chuck Hagenbuch Date: Wed, 13 May 2009 01:02:48 +0000 (-0400) Subject: fix variable name; was overwriting instead of setting X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=da4fbf3e30ce1032e253cae59ce098f8f9dfd764;p=horde.git fix variable name; was overwriting instead of setting --- diff --git a/framework/Date_Parser/lib/Horde/Date/Repeater/Day.php b/framework/Date_Parser/lib/Horde/Date/Repeater/Day.php index f000b25b5..7cc544b02 100644 --- a/framework/Date_Parser/lib/Horde/Date/Repeater/Day.php +++ b/framework/Date_Parser/lib/Horde/Date/Repeater/Day.php @@ -35,7 +35,7 @@ class Horde_Date_Repeater_Day extends Horde_Date_Repeater case 'past': $dayBegin = new Horde_Date(array('year' => $this->now->year, 'month' => $this->now->month, 'day' => $this->now->day)); - $dayBegin = new Horde_Date(array('year' => $this->now->year, 'month' => $this->now->month, 'day' => $this->now->day, 'hour' => $this->now->hour)); + $dayEnd = new Horde_Date(array('year' => $this->now->year, 'month' => $this->now->month, 'day' => $this->now->day, 'hour' => $this->now->hour)); break; case 'none':