php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #65745 Typo in commit 4a3936ef4abdeb72c7d323fe4b6a65e1ae0ef181
Submitted: 2013-09-23 20:20 UTC Modified: 2013-09-23 20:30 UTC
From: herwinw at herwinw dot nl Assigned: aharvey (profile)
Status: Closed Package: Documentation problem
PHP Version: master-Git-2013-09-23 (Git) OS: -
Private report: No CVE-ID: None
 [2013-09-23 20:20 UTC] herwinw at herwinw dot nl
Description:
------------
The following has been added to UPGRADING

+- Core:
+  Removed $HTTP_RAW_POST_DATA global variable. Restore backwards compatibility 
+  by:
+  <?php
+  global $HTTP_RAW_POST_DATA;
+  if (!isset($HTTP_RAW_POST_DATA)) {
+      $HTTP_ROW_POST_DATA = file_get_contents("php://input");
+  }
+  ?>

There is a typo in here, s/ROW/RAW/


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-09-23 20:30 UTC] aharvey@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: aharvey
 [2013-09-23 20:30 UTC] aharvey@php.net
Fixed; thanks.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 01:01:28 2024 UTC