summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/input.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-12-02 17:03:47 +0100
committerAndrey Andreev <narf@devilix.net>2014-12-02 17:03:47 +0100
commitef29f83f786aa968be3d9b7b55ccdc45f33c475d (patch)
tree9cb3bd2b599ff9b73f4fb72cbca777e846c1a8e4 /user_guide_src/source/libraries/input.rst
parent3229e5c5db5e54ed3bd1571c9ea9d01f6fa1de89 (diff)
Some optimizations & polishing following PR #3381
Diffstat (limited to 'user_guide_src/source/libraries/input.rst')
-rw-r--r--user_guide_src/source/libraries/input.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/libraries/input.rst b/user_guide_src/source/libraries/input.rst
index 4df7629e4..112347129 100644
--- a/user_guide_src/source/libraries/input.rst
+++ b/user_guide_src/source/libraries/input.rst
@@ -208,7 +208,7 @@ Class Reference
.. method:: cookie([$index = NULL[, $xss_clean = NULL]])
- :param mixed $index: COOKIE parameter name
+ :param mixed $index: COOKIE name
:param bool $xss_clean: Whether to apply XSS filtering
:returns: $_COOKIE if no parameters supplied, otherwise the COOKIE value if found or NULL if not
:rtype: mixed
@@ -219,7 +219,7 @@ Class Reference
$this->input->cookie('some_cookie');
$this->input->cookie('some_cookie, TRUE); // with XSS filter
- To return an array of multiple cookie parameters, pass all the required keys
+ To return an array of multiple cookie values, pass all the required keys
as an array.
::
$this->input->cookie(array('some_cookie', 'some_cookie2'));
@@ -236,7 +236,7 @@ Class Reference
$this->input->server('some_data');
- To return an array of multiple server parameters, pass all the required keys
+ To return an array of multiple ``$_SERVER`` values, pass all the required keys
as an array.
::
$this->input->server(array('SERVER_PROTOCOL', 'REQUEST_URI'));