Age | Commit message (Expand) | Author | Files | Lines |
2011-01-16 | Added documentation for environments | joelcox | 2 | -3/+18 |
2011-01-16 | Removed configs from environments and corrected for fallback | joelcox | 4 | -714/+11 |
2011-01-16 | Removed default error_reporting and set it depending on environment | joelcox | 1 | -16/+22 |
2011-01-16 | Changed loading process for database config to check for config for the set e... | joelcox | 1 | -1/+15 |
2011-01-16 | Fixed bug that prevented global config from loading on error | joelcox | 1 | -5/+8 |
2011-01-16 | Deleted global config file for clarity sake | joelcox | 1 | -354/+0 |
2011-01-15 | Split basic configuration in three environments, providing fallback to global | joelcox | 9 | -8/+1118 |
2011-01-13 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Phil Sturgeon | 2 | -2/+2 |
2011-01-13 | Automated merge with ssh://hg@bitbucket.org/dallard/codeigniter-reactor | Phil Sturgeon | 1 | -1/+1 |
2011-01-13 | Updating references to deprecated functions in the active record documentation | Derek Allard | 1 | -1/+1 |
2011-01-13 | Added access scope to Email library and allow method chaining from $this->ema... | Phil Sturgeon | 1 | -61/+64 |
2011-01-12 | Changed instructions for location of log path. Fixes #305 | Eric Barnes | 1 | -1/+1 |
2011-01-12 | Removed trailing slash from $this->uri->ruri_string(). Fixes #292 | Eric Barnes | 1 | -1/+1 |
2011-01-11 | Reworked convert_foreign_characters in text helper. Thanks to Mario Ricalde. | Eric Barnes | 2 | -65/+56 |
2011-01-11 | Changed || to OR to match coding standards | Eric Barnes | 1 | -1/+1 |
2011-01-06 | Altered User agent library so that is_browser(), is_mobile() and is_robot() c... | Phil Sturgeon | 4 | -30/+92 |
2011-01-05 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Phil Sturgeon | 7 | -53/+168 |
2011-01-05 | Use arrays in DBForge for constraint for things like decimal, float, numeric,... | Phil Sturgeon | 1 | -4/+19 |
2011-01-05 | If the data is an array output them one at a time. E.g: form_input('name[]', ... | Phil Sturgeon | 1 | -0/+7 |
2011-01-05 | Added text/x-csv to mimes.php. | Phil Sturgeon | 1 | -1/+1 |
2011-01-04 | Added ability to auto load package config files. Fixes #281 | Eric Barnes | 1 | -8/+21 |
2010-12-31 | Added support for calling controllers, methods and passing parameters via com... | Phil Sturgeon | 1 | -4/+33 |
2010-12-29 | Changed email library to allow setting different user-agent. Fixes #286 | Eric Barnes | 2 | -20/+21 |
2010-12-28 | js and css was loaded via absolute url instead of pointing relative. Fixes #289 | Eric Barnes | 1 | -5/+5 |
2010-12-27 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Phil Sturgeon | 1 | -1/+1 |
2010-12-27 | Implemented GET string support from Dan Horrigan and modified it slightly. Al... | Phil Sturgeon | 20 | -93/+1241 |
2010-12-27 | Fixed version in file uploading docs. Fixes: #255 | Eric Barnes | 1 | -1/+1 |
2010-12-27 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Phil Sturgeon | 8 | -72/+92 |
2010-12-27 | Languages can now be placed in packages folders, and added ->load->get_packag... | Phil Sturgeon | 3 | -22/+32 |
2010-12-27 | Issue #298: $this->table->function = can now accept an array with a valid cal... | Phil Sturgeon | 1 | -1/+1 |
2010-12-21 | Initial commit of Caching Driver. | Greg Aker | 6 | -0/+1094 |
2010-12-15 | ['404_override'] can now take methods and URI segments, not just a controller... | Phil Sturgeon | 2 | -9/+14 |
2010-12-15 | Added the regex_match Form Validation rule. Had to change how the rules are ... | Dan Horrigan | 2 | -2/+29 |
2010-12-15 | Revised the base_url auto-generation detection of protocol as some servers wi... | Phil Sturgeon | 1 | -1/+1 |
2010-12-15 | <kbd>['base_url']</kbd> is now empty by default and will guess what it should... | Phil Sturgeon | 3 | -41/+46 |
2010-12-15 | Added full Query String and $_GET array support. This is enabled by default.... | Dan Horrigan | 3 | -33/+75 |
2010-12-15 | Potential PHP 5.4 issue, get_magic_quotes_gpc() is being removed. This change... | Phil Sturgeon | 1 | -1/+1 |
2010-12-15 | Package paths can now be auto-loaded in autoload.php. | Phil Sturgeon | 2 | -6/+28 |
2010-12-15 | Upload library file_name can now be set without an extension, the extension w... | Phil Sturgeon | 1 | -1/+12 |
2010-12-15 | Name can be omiitted from ->dbforge->modify_column()'s 2nd param if you aren'... | Phil Sturgeon | 2 | -1/+7 |
2010-12-09 | Fix #260 - tightening up the is_ajax_request() method in the Input class. Th... | Greg Aker | 1 | -2/+1 |
2010-11-22 | Adding is_ajax_request() method to CI_Input | Greg Aker | 3 | -2/+24 |
2010-11-19 | Updating Output Profiler to validate xHTML Strict, and HTML5. | Greg Aker | 2 | -27/+28 |
2010-11-18 | Updating .hgignore to ignore everything in the system/cache directory except ... | Greg Aker | 1 | -1/+4 |
2010-11-18 | Fix #237 get_instance() was being called in the output class before the CI_Co... | Greg Aker | 1 | -1/+1 |
2010-11-15 | Adding request_headers() and get_request_header() methods to the input class.... | Greg Aker | 3 | -2/+90 |
2010-11-14 | Fix #231 removing some PHP 4 doc notes from the creating libraries documentation | Greg Aker | 1 | -7/+2 |
2010-11-14 | Fix #233 Change Controller to CI_Controller in the models documentation | Greg Aker | 1 | -1/+1 |
2010-11-12 | Fix #230 where the validation class was referenced in the docs, not the form_... | Greg Aker | 1 | -2/+2 |
2010-11-12 | Fixing a bug created yesterday with overzealous constructor replacements. | Greg Aker | 1 | -2/+2 |