From dc134a8a0e900d0e369ba35749e9530028832cbb Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 8 May 2014 10:00:55 +0300 Subject: [ci skip] Update a comment for CI_Input::input_stream() --- system/core/Input.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system/core/Input.php') diff --git a/system/core/Input.php b/system/core/Input.php index b3bed724f..544b7c08b 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -295,8 +295,8 @@ class CI_Input { */ public function input_stream($index = NULL, $xss_clean = NULL) { - // The input stream can only be read once, so we'll need to check - // if we have already done that first. + // Prior to PHP 5.6, the input stream can only be read once, + // so we'll need to check if we have already done that first. if ( ! is_array($this->_input_stream)) { parse_str(file_get_contents('php://input'), $this->_input_stream); -- cgit v1.2.3-24-g4f1b