summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/core/Input.php')
-rw-r--r--system/core/Input.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index 14f3e1083..a72c4ac1e 100644
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -305,8 +305,8 @@ class CI_Input {
*
* Useful when you need to access PUT, DELETE or PATCH request data.
*
- * @param string $index Index for item to be fetched
- * @param bool $xss_clean Whether to apply XSS filtering
+ * @param string $index Index for item to be fetched
+ * @param bool $xss_clean Whether to apply XSS filtering
* @return mixed
*/
public function input_stream($index = NULL, $xss_clean = NULL)
@@ -319,7 +319,7 @@ class CI_Input {
parse_str($this->raw_input_stream, $this->_input_stream);
is_array($this->_input_stream) OR $this->_input_stream = array();
}
-
+
return $this->_fetch_from_array($this->_input_stream, $index, $xss_clean);
}