From 9b77fe3e39894af4816a662630c442ab89f16e31 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Wed, 16 Feb 2011 19:05:25 +0000 Subject: Updated input documentation to use NULL instead of empty string for new post() and get() changes. --- user_guide/libraries/input.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide/libraries/input.html') 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
$this->input->post(); // returns all POST items with XSS filter
- $this->input->post('', FALSE); // returns all POST items without XSS + $this->input->post(NULL, FALSE); // returns all POST items without XSS

$this->input->get()

@@ -155,7 +155,7 @@ else
$this->input->get(); // returns all GET items with XSS filter
- $this->input->get('', FALSE); // returns all GET items without XSS filtering + $this->input->get(NULL, FALSE); // returns all GET items without XSS filtering

$this->input->get_post()

-- cgit v1.2.3-24-g4f1b