diff options
author | Andrey Andreev <narf@devilix.net> | 2014-05-08 09:00:55 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-05-08 09:00:55 +0200 |
commit | dc134a8a0e900d0e369ba35749e9530028832cbb (patch) | |
tree | 45857eb753bd07ab80148b5e203f95133a1fc0ed | |
parent | ddd7e1785aa124dfc6517088d75466118f102f23 (diff) |
[ci skip] Update a comment for CI_Input::input_stream()
-rw-r--r-- | system/core/Input.php | 4 |
1 files changed, 2 insertions, 2 deletions
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); |