Skip to content

Commit 1e35792

Browse files
committed
Update Input.php
1 parent 54b42d6 commit 1e35792

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/core/Input.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ public function server($index, $xss_clean = NULL)
305305
*
306306
* Useful when you need to access PUT, DELETE or PATCH request data.
307307
*
308-
* @param string $index Index for item to be fetched
309-
* @param bool $xss_clean Whether to apply XSS filtering
308+
* @param string $index Index for item to be fetched
309+
* @param bool $xss_clean Whether to apply XSS filtering
310310
* @return mixed
311311
*/
312312
public function input_stream($index = NULL, $xss_clean = NULL)
@@ -319,7 +319,7 @@ public function input_stream($index = NULL, $xss_clean = NULL)
319319
parse_str($this->raw_input_stream, $this->_input_stream);
320320
is_array($this->_input_stream) OR $this->_input_stream = array();
321321
}
322-
322+
323323
return $this->_fetch_from_array($this->_input_stream, $index, $xss_clean);
324324
}
325325

0 commit comments

Comments
 (0)