From 2e0caa5f5f4f0fd1b7b07d2158066bb727ffa5bb Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 20 May 2005 11:14:01 +0000 Subject: [PATCH] - MFH: Fixed bug #33013: "next month" was handled wrong. --- ext/standard/parsedate.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/parsedate.y b/ext/standard/parsedate.y index b5eec08ea5..883df33dd0 100644 --- a/ext/standard/parsedate.y +++ b/ext/standard/parsedate.y @@ -635,7 +635,7 @@ static TABLE const OtherTable[] = { { "now", tDAY_UNIT, 0 }, { "last", tUNUMBER, -1 }, { "this", tUNUMBER, 0 }, - { "next", tUNUMBER, 2 }, + { "next", tUNUMBER, 1 }, { "first", tUNUMBER, 1 }, /* { "second", tUNUMBER, 2 }, */ { "third", tUNUMBER, 3 }, -- 2.40.0