Commit: 8d087dc0d7c88e26539646875dc0f7bb5042187b Author: Adam Harvey <ahar...@php.net> Mon, 23 Sep 2013 13:30:47 -0700 Parents: c760ff1615ba8da301d4ba109bf5fd3193c8b5e2 Branches: master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=8d087dc0d7c88e26539646875dc0f7bb5042187b Log: Fix typo: HTTP_ROW_POST_DATA → HTTP_RAW_POST_DATA. Fixes bug #65745 (Typo in commit 4a3936ef4abdeb72c7d323fe4b6a65e1ae0ef181). Bugs: https://bugs.php.net/65745 Changed paths: M UPGRADING Diff: diff --git a/UPGRADING b/UPGRADING index f5e7cd0..581a38e 100755 --- a/UPGRADING +++ b/UPGRADING @@ -26,7 +26,7 @@ PHP X.Y UPGRADE NOTES <?php global $HTTP_RAW_POST_DATA; if (!isset($HTTP_RAW_POST_DATA)) { - $HTTP_ROW_POST_DATA = file_get_contents("php://input"); + $HTTP_RAW_POST_DATA = file_get_contents("php://input"); } ?> -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php