Please consider querystring support in 2.x |
[eluser]WanWizard[/eluser]
Just look at the patch file: In URI.php, find: Code: if (is_array($_GET) && count($_GET) == 1 && trim(key($_GET), '/') != '') Code: if ($this->config->item('enable_query_strings') === TRUE && is_array($_GET) && count($_GET) == 1 && trim(key($_GET), '/') != '') In Input.php, add: Code: var $enable_query_strings = FALSE; Code: $this->allow_get_array = ($CFG->item('enable_query_strings') === TRUE) ? TRUE : FALSE; Code: $this->allow_get_array = ($CFG->item('allow_get_array') === TRUE) ? TRUE : FALSE; In CodeIgniter.php, find: Code: $CFG =& load_class('Config'); Code: $CFG =& load_class('Config'); find: Code: $LANG =& load_class('Language'); Code: $IN =& load_class('Input'); Note: if you're using CI 2.0, you could download the modified files from our repository: http://www.exitecms.org/trac8/browser/trunk/system/core |
Welcome Guest, Not a member yet? Register Sign In |