Skip to content

Commit

Permalink
- Fixed bug #33013: "next month" was done wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
Derick Rethans committed May 20, 2005
1 parent e5f04e5 commit 379c4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/standard/parsedate.y
Expand Up @@ -546,7 +546,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 },
Expand Down

0 comments on commit 379c4af

Please sign in to comment.