diff options
| author | Adam Harvey <aharvey@php.net> | 2013-09-23 13:30:47 -0700 |
|---|---|---|
| committer | Adam Harvey <aharvey@php.net> | 2013-09-23 13:30:47 -0700 |
| commit | 8d087dc0d7c88e26539646875dc0f7bb5042187b (patch) | |
| tree | 9dd102de81f75658deecf296c3546d3f35845f10 | |
| parent | c760ff1615ba8da301d4ba109bf5fd3193c8b5e2 (diff) | |
| download | php-git-8d087dc0d7c88e26539646875dc0f7bb5042187b.tar.gz | |
Fix typo: HTTP_ROW_POST_DATA → HTTP_RAW_POST_DATA.
Fixes bug #65745 (Typo in commit 4a3936ef4abdeb72c7d323fe4b6a65e1ae0ef181).
| -rwxr-xr-x | UPGRADING | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } ?> |
