Added full Query String and $_GET array support.  This is enabled by default.  Added a seperate config option to enable/disable the $_GET array.
diff --git a/application/config/config.php b/application/config/config.php
index 2a084ac..477d7bf 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -134,6 +134,9 @@
 | By default CodeIgniter uses search-engine friendly segment based URLs:
 | example.com/who/what/where/
 |
+| By default CodeIgniter enables access to the $_GET array.  If for some
+| reason you would like to disable it, set 'allow_get_array' to FALSE.
+|
 | You can optionally enable standard query string based URLs:
 | example.com?who=me&what=something&where=here
 |
@@ -148,6 +151,7 @@
 | use segment based URLs.
 |
 */
+$config['allow_get_array'] = TRUE;
 $config['enable_query_strings'] = FALSE;
 $config['controller_trigger']	= 'c';
 $config['function_trigger']		= 'm';