commit | 325197e700564f8e4e0ba7c9fc82abfd85f451b0 | [log] [tgz] |
---|---|---|
author | Rick Ellis <rick.ellis@ellislab.com> | Mon Nov 20 17:29:05 2006 +0000 |
committer | Rick Ellis <rick.ellis@ellislab.com> | Mon Nov 20 17:29:05 2006 +0000 |
tree | c109f0c96f187dc3b919aca591daf5767de4c982 | |
parent | ebfa686046bb98c757d1b41c81eb867478036e68 [diff] [blame] |
diff --git a/system/libraries/Input.php b/system/libraries/Input.php index b630bf6..8017620 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php
@@ -73,13 +73,15 @@ { if ( ! is_array($global)) { - unset($$global); + global $global; + $$global = NULL; } else { foreach ($global as $key => $val) { - unset($$key); + global $$key; + $$key = NULL; } } }