Make WordPress Core


Ignore:
Timestamp:
06/08/2020 07:53:19 PM (4 years ago)
Author:
desrosj
Message:

General: Remove or add inline comments to $HTTP_RAW_POST_DATA occurrences.

The $HTTP_RAW_POST_DATA global was deprecated in PHP 5.6 and removed completely in PHP 7.0. In general, php://input should be used instead of $HTTP_RAW_POST_DATA.

Because WordPress Core still supports PHP 5.6, some plugins or sites may still rely on this variable being present and populated with the expected data. For that reason, occurrences of the variable will remain with updated inline documentation until support for PHP 5.6 is officially dropped in WordPress.

Props skoskie, jrf, desrosj, TimothyBlynJacobs.
See #49922.
Fixes #49810.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/IXR/class-IXR-server.php

    r45424 r47926  
    4848            }
    4949
    50             global $HTTP_RAW_POST_DATA;
    51             if (empty($HTTP_RAW_POST_DATA)) {
    52                 // workaround for a bug in PHP 5.2.2 - http://bugs.php.net/bug.php?id=41293
    53                 $data = file_get_contents('php://input');
    54             } else {
    55                 $data =& $HTTP_RAW_POST_DATA;
    56             }
     50            $data = file_get_contents('php://input');
    5751        }
    5852        $this->message = new IXR_Message($data);
Note: See TracChangeset for help on using the changeset viewer.