diff options
Diffstat (limited to 'user_guide/libraries')
-rw-r--r-- | user_guide/libraries/input.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/input.html b/user_guide/libraries/input.html index 844e99ab8..0615fe622 100644 --- a/user_guide/libraries/input.html +++ b/user_guide/libraries/input.html @@ -139,7 +139,7 @@ else<br /> <code> $this->input->post(); // returns all POST items with XSS filter <br /> - $this->input->post('', FALSE); // returns all POST items without XSS + $this->input->post(NULL, FALSE); // returns all POST items without XSS </code> <h2>$this->input->get()</h2> @@ -155,7 +155,7 @@ else<br /> <code> $this->input->get(); // returns all GET items with XSS filter <br /> - $this->input->get('', FALSE); // returns all GET items without XSS filtering + $this->input->get(NULL, FALSE); // returns all GET items without XSS filtering </code> <h2>$this->input->get_post()</h2> |