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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: herwinw at herwinw dot nl
New email:
PHP Version: OS:

 

 [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

Pull Requests

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-2025 The PHP Group
All rights reserved.
Last updated: Sat May 03 22:01:28 2025 UTC