diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-03-01 14:20:43 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-03-01 14:20:43 +0100 |
commit | 87d1eeb9e1f5678c78e06c3a685fb3aa1a88ece3 (patch) | |
tree | cb80ad3057cc60e04b05fcfea68ff113efa7da1d /system/libraries | |
parent | 090b2f7f2e9109b8cf03a3f64d520b50da4fc57a (diff) |
function post() duplicated, changed the second to function get()
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 0d41b0a99..3a35f498a 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -194,7 +194,7 @@ class CI_Input { * @param bool
* @return string
*/
- function post($index = '', $xss_clean = FALSE)
+ function get($index = '', $xss_clean = FALSE)
{
if ( ! isset($_GET[$index]))
{
|