- c5bf616 Added 404_override to Codeigniter file to catch the 404 if the controller is available but no method. Fixes #19 by Eric Barnes · 14 years ago
- 999e747 Fix #21 - Typo in get_metadata() function of apc and memcached cache drivers. by Greg Aker · 14 years ago
- 9d3ad26 some cleanup for the javascript class docs by Derek Jones · 14 years ago
- 700205a updating copyrights to 2011 by Derek Jones · 14 years ago
- 3bb336c Automated merge with https://bitbucket.org/ellislab/codeigniter by Phil Sturgeon · 14 years ago
- 7d3a189 Moving the file to Utf8.php by Pascal Kriete · 14 years ago
- aaec1e4 Renaming the unicode class to utf8 so we don't run the risk of violating the Unicode Consortium's trademark. by Pascal Kriete · 14 years ago
- 705a3ee Avoid double-slashed on the base_url by only slashing index_page if it is actually set. by Phil Sturgeon · 14 years ago
- 0b175df Automated merge with https://bitbucket.org/dhorrigan/codeigniter-reactor by Phil Sturgeon · 14 years ago
- c382871 Reverted regex validation while we re-think the implementation, and added ->input->is_cli_request(); by Phil Sturgeon · 14 years ago
- fea45ad Updated the auto URI detection so that it works in more scenarios. Fixes #3 by Dan Horrigan · 14 years ago
- 9805ecc Added access scope to security library and added config options for csrf protection by Eric Barnes · 14 years ago
- 7b47430 sharing some work on model instances by John Crepezzi · 14 years ago
- 87a5cf3 Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor by Phil Sturgeon · 14 years ago
- a0f980e Added access scope to Email library and allow method chaining from $this->email->initialize(). by Phil Sturgeon · 14 years ago
- ffdc392 Removed trailing slash from $this->uri->ruri_string(). Fixes #292 by Eric Barnes · 14 years ago
- 5e04480 Reworked convert_foreign_characters in text helper. Thanks to Mario Ricalde. by Eric Barnes · 14 years ago
- 7b3be2f Changed || to OR to match coding standards by Eric Barnes · 14 years ago
- 3b889a9 Fixed a bug (#14628) where the DATE_ISO8601 variable was returning an incorrectly formatted date string. by Greg Aker · 14 years ago
- 3ef0d28 Automated merge with http://hg.ellislab.com/CodeIgniter2 by Pascal Kriete · 14 years ago
- 43ded23 Adding batch insert and batch update to the mysqli driver. by Pascal Kriete · 14 years ago
- dac1b46 Altered User agent library so that is_browser(), is_mobile() and is_robot() can optionally check for a specific browser or mobile device. by Phil Sturgeon · 14 years ago
- 0711dc8 Hey look, it's 2011 by Greg Aker · 14 years ago
- c2e9225 Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor by Phil Sturgeon · 14 years ago
- 27324cd Use arrays in DBForge for constraint for things like decimal, float, numeric, enum and set. by Phil Sturgeon · 14 years ago
- 5c56180 If the data is an array output them one at a time. E.g: form_input('name[]', set_value('name[]'); by Phil Sturgeon · 14 years ago
- 5e16ec6 Added ability to auto load package config files. Fixes #281 by Eric Barnes · 14 years ago
- 48c718c Added support for calling controllers, methods and passing parameters via command line, either automatically or specifically with $config['uri_protocol'] = 'CLI'; by Phil Sturgeon · 14 years ago
- 6113f54 Changed email library to allow setting different user-agent. Fixes #286 by Eric Barnes · 14 years ago
- c808915 Implemented GET string support from Dan Horrigan and modified it slightly. Also tweaked his regex_match changes. by Phil Sturgeon · 14 years ago
- 5cbe4dd Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor by Phil Sturgeon · 14 years ago
- de3dbc3 Languages can now be placed in packages folders, and added ->load->get_package_paths(). by Phil Sturgeon · 14 years ago
- 6c597f8 Issue #298: $this->table->function = can now accept an array with a valid callback which is passed to call_user_func(). by Phil Sturgeon · 14 years ago
- ccbfbf6 Fix #85 error in db queries in the output profiler. by Greg Aker · 14 years ago
- bde25d9 Initial commit of Caching Driver. by Greg Aker · 14 years ago
- 790ebf3 Changing the router to support any number of segments in the default route. Closes #261. by Pascal Kriete · 14 years ago
- 23174a6 ['404_override'] can now take methods and URI segments, not just a controller name. This is useful for 404 pages on errors/page_missing or /pages/view/404. by Phil Sturgeon · 14 years ago
- 2280e8e Added the regex_match Form Validation rule. Had to change how the rules are split so that no regex breaks the rule splitting. by Dan Horrigan · 14 years ago
- fb55238 Revised the base_url auto-generation detection of protocol as some servers will not send off. by Phil Sturgeon · 14 years ago
- 4df8b22 <kbd>['base_url']</kbd> is now empty by default and will guess what it should be. by Phil Sturgeon · 14 years ago
- 65d603e Added full Query String and $_GET array support. This is enabled by default. Added a seperate config option to enable/disable the $_GET array. by Dan Horrigan · 14 years ago
- fd69489 Potential PHP 5.4 issue, get_magic_quotes_gpc() is being removed. This change will check the function exists before calling it in Input. by Phil Sturgeon · 14 years ago
- 9730c75 Package paths can now be auto-loaded in autoload.php. by Phil Sturgeon · 14 years ago
- 678256c Fix #93 Updating postgres dbforge create table method. Thanks to James Gifford for the patch. http://codeigniter.com/forums/viewthread/73392/ by Greg Aker · 14 years ago
- 2eaa407 Moving system/{logs,cache} to the application directory. by Greg Aker · 14 years ago
- 9a311fd Package paths can now be auto-loaded in autoload.php. by Phil Sturgeon · 14 years ago
- 1e74da2 Upload library file_name can now be set without an extension, the extension will be taken from the uploaded file instead of the given name. by Phil Sturgeon · 14 years ago
- a58ecae Name can be omiitted from ->dbforge->modify_column()'s 2nd param if you aren't changing the name. by Phil Sturgeon · 14 years ago
- 2fae66e Fix #260 - tightening up the is_ajax_request() method in the Input class. Thanks sophistry for the suggestion by Greg Aker · 14 years ago
- 081ac9d Adding is_ajax_request() method to CI_Input by Greg Aker · 14 years ago
- 3a56398 Updating Output Profiler to validate xHTML Strict, and HTML5. by Greg Aker · 14 years ago
- cc92210 Fix #237 get_instance() was being called in the output class before the CI_Controller exists. by Greg Aker · 14 years ago
- ec2f571 Adding request_headers() and get_request_header() methods to the input class. The request_headers() method is helpful in non-apache environments where apache_request_headers() isn't going to exist. by Greg Aker · 14 years ago
- 857c6f5 Fixing a bug created yesterday with overzealous constructor replacements. by Greg Aker · 14 years ago
- ebb6f4b Some simple tweaking by Pascal Kriete · 14 years ago
- a769deb Altered Email class to allow for method chaining. (Thanks Phil Sturgeon) by Greg Aker · 14 years ago
- 9f9af60 Altered Form_Validation library to allow for method chaining on set_rules(), set_message() and set_error_delimiters() functions. by Greg Aker · 14 years ago
- 22f1a63 Fixing output buffer error in the loader class by Greg Aker · 14 years ago
- a926328 Changing all class constructors to __construct() by Greg Aker · 14 years ago
- 579fde3 Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/ by Greg Aker · 14 years ago
- 58fdee8 setting var/function visibility in the UPload class by Greg Aker · 14 years ago
- c0af6c0 removing a few php 4 workarounds from the image lib. by Pascal Kriete · 14 years ago
- 8adf8b0 Removing a global call that was needed for php 4. by Pascal Kriete · 14 years ago
- fa67d54 Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/ by Pascal Kriete · 14 years ago
- 5856002 Removing instantiate_class(), which was needed to make php 4 and 5.3 play together nicely. Removed all instantiations by reference. by Pascal Kriete · 14 years ago
- 146278b merging in changes by Greg Aker · 14 years ago
- 5ac5594 Changing method visibility in the Profiler class by Greg Aker · 14 years ago
- a88f043 Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/ by Pascal Kriete · 14 years ago
- 68e30fd Removing the compatitibility helper. by Pascal Kriete · 14 years ago
- 2893f00 Removing require Compat.php in CodeIgniter.php by Greg Aker · 14 years ago
- b026724 Merging in changes by Greg Aker · 14 years ago
- 741de1c Updating PHP requirements in files 5.1.6 by Greg Aker · 14 years ago
- 17eddc9 Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/ by Pascal Kriete · 14 years ago
- 89ace43 Removing _ci_is_instance from the loader. by Pascal Kriete · 14 years ago
- 3791853 Removing the core/Compat.php file. :: poof :: by Greg Aker · 14 years ago
- 00c0545 Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/ by Greg Aker · 14 years ago
- 4abfa68 Blasting the Base4/5 files. Updating Controller.php to inherit bits from the old Base5. by Greg Aker · 14 years ago
- 287781e Removing _assign_to_models and _assign_libraries from model related code in favor of __get(). by Pascal Kriete · 14 years ago
- 51e4344 merging in changes by Brandon Jones · 14 years ago
- 485d741 Altered our mail() params to be inline with PHP documentation, fixes mailing on some hosts by Brandon Jones · 14 years ago
- f7d162a Fix #95 bug in the html helper where too much white space was rendered between the src and alt tags in the img() function. by Greg Aker · 14 years ago
- 7d8e820 Automated merge with http://hg.ellislab.com/CodeIgniter2 by Pascal Kriete · 14 years ago
- 3431ae3 Adding a second parameter to _remap that contains an array of the leftover segments. by Pascal Kriete · 14 years ago
- 63277b8 Fix #62 Adding CI_ prefix to Controller. by Greg Aker · 14 years ago
- 6b6c274 Normalizing package paths to include a single trailing slash. by Pascal Kriete · 14 years ago
- f566af5 Fixed a bug where silently failed to override if set_time_limit was in Suhosin's function blacklist. Simply moved the set_time_limit call down a bit. by Pascal Kriete · 14 years ago
- e917f9b Automated merge with http://hg.ellislab.com/CodeIgniter2 by Pascal Kriete · 14 years ago
- 5b2d2da Fixing the docblock on the unicode class. by Pascal Kriete · 14 years ago
- e4054b8 Automated merge with http://hg.ellislab.com/CodeIgniter2 by Derek Jones · 14 years ago
- ce43396 Fix #83 where multiple libraries could not be loaded at once by passing an array to the load->library() function. by Greg Aker · 14 years ago
- bce1348 Fixed a bug where CI_Model is always loaded in core/Loader.php, regardless of if the class is instantiated or not. by Greg Aker · 14 years ago
- 3a082fd added elements() to the Array Helper to return elements from an array with specified keys only. Differs from array_intersect_assoc() in that a default value can be provided for keys that do not exist in the supplied array by Derek Jones · 14 years ago
- aa7d3f9 Automated merge with https://bitbucket.org/barrymieny/codeigniter by Derek Jones · 14 years ago
- 124ac66 merging changes by Derek Jones · 14 years ago
- 2ef3759 modified the security helper to assist in preventing directory traversal when using sanitize_filename() for user input by Derek Jones · 14 years ago
- 2615e41 fixed a security issue which in certain cases could result in directory traversal by Derek Jones · 14 years ago
- 71eee84 fixed bug where sess_expire_on_close was not being set from a config file, fixes #173 by Derek Jones · 14 years ago
- dd67197 Cleanup of stray spaces and tabs by Barry Mieny · 14 years ago
- 3934a4a Fixed link by fesplugas · 14 years ago
- c206754 tweak to typography. Better aesthetic to placement of paragraph tags by Derek Jones · 14 years ago