From: Chuck Hagenbuch Date: Thu, 21 May 2009 15:19:14 +0000 (-0400) Subject: fix variable name (missed uppercase S) X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0f0893e7ce96cb82152b10bd84b51ed7b58cc37c;p=horde.git fix variable name (missed uppercase S) --- diff --git a/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php b/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php index 766781b85..4e6527060 100644 --- a/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php +++ b/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php @@ -342,7 +342,7 @@ class Horde_Date_Parser_Locale_Base try { $dayStart = new Horde_Date($year, $month, $day); - return $this->dayOrTime($daystart, array($tokens[3]), $options); + return $this->dayOrTime($dayStart, array($tokens[3]), $options); } catch (Exception $e) { return null; }