diff options
| author | 2017-06-20 09:11:39 +0200 | |
|---|---|---|
| committer | 2017-06-20 09:11:39 +0200 | |
| commit | 3e28ca565e4065e805925f63af7dc9f2845e1903 (patch) | |
| tree | 199709c4e6829ae8299bfb85b4719efac53d6789 /p/api/greader.php | |
| parent | e3d76d612c4ada28cc839f67c23b4dcd52b39d08 (diff) | |
| parent | 9f936b549b466d5dfe415a137572093356647ca2 (diff) | |
Merge pull request #1585 from Alkarex/file_get_contents-fix
file_get_contents fix
Diffstat (limited to 'p/api/greader.php')
| -rw-r--r-- | p/api/greader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/greader.php b/p/api/greader.php index e1f4202a7..262f9d0fa 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -23,7 +23,7 @@ Server-side API compatible with Google Reader API layer 2 require('../../constants.php'); require(LIB_PATH . '/lib_rss.php'); //Includes class autoloader -$ORIGINAL_INPUT = file_get_contents('php://input', false, null, -1, 1048576); +$ORIGINAL_INPUT = file_get_contents('php://input', false, null, 0, 1048576); if (PHP_INT_SIZE < 8) { //32-bit function dec2hex($dec) { |
