summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Expand)AuthorFilesLines
2011-02-14Uppercasing some stray lowercase keywords for code consistencyPascal Kriete5-13/+13
2011-02-14Fix #329 where the file caching driver referenced the incorrect cache directory.Greg Aker1-1/+1
2011-02-09Reverted recent MySQL backtick escaping as some queries were double-escaping.Phil Sturgeon1-4/+4
2011-02-08Merged migration branch for now.Phil Sturgeon1-8/+8
2011-02-08MySQL Driver will now wrap field names for insert(), update() and replace() w...Phil Sturgeon1-8/+8
2011-02-07Added Migrations library, config and an example controller/migration file.Phil Sturgeon1-0/+336
2011-02-07Added decimal, less_than and greater_than rules to the Form validation Class.Phil Sturgeon1-10/+60
2011-02-06Fixed is_referral to return proper status. Fixes #40Eric Barnes1-1/+5
2011-02-03Fixes #27. When the default controller was used, the _detect_uri() method wa...ericbarnes@ericbarnes.local1-0/+6
2011-02-02Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon1-0/+11
2011-02-02Merged recent changes and tweaked multi-env changes.Phil Sturgeon105-307/+455
2011-02-01Better logic handling for 404 overrideEric Barnes1-0/+11
2011-02-01Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon4-5/+15
2011-02-01Some servers would trick URI into thinking it was being run in CLI mode, whic...Phil Sturgeon1-2/+2
2011-01-31Added 404_override to Codeigniter file to catch the 404 if the controller is ...Eric Barnes2-3/+13
2011-01-29Fix #21 - Typo in get_metadata() function of apc and memcached cache drivers.Greg Aker2-2/+2
2011-01-28some cleanup for the javascript class docsDerek Jones1-1/+1
2011-01-28updating copyrights to 2011Derek Jones7-7/+7
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon23-288/+1405
2011-01-20Moving the file to Utf8.phpPascal Kriete1-0/+0
2011-01-20Renaming the unicode class to utf8 so we don't run the risk of violating the ...Pascal Kriete3-15/+15
2011-01-19Avoid double-slashed on the base_url by only slashing index_page if it is act...Phil Sturgeon1-1/+2
2011-01-19Automated merge with https://bitbucket.org/dhorrigan/codeigniter-reactorPhil Sturgeon2-12/+20
2011-01-19Reverted regex validation while we re-think the implementation, and added ->i...Phil Sturgeon2-12/+20
2011-01-19Updated the auto URI detection so that it works in more scenarios. Fixes #3Dan Horrigan1-78/+32
2011-01-17Added access scope to security library and added config options for csrf prot...Eric Barnes1-31/+36
2011-01-16Cleaned up environment class variable which isn't used anymore in current imp...joelcox1-1/+0
2011-01-16Set error_reporting to E_ALL when environment unknown and changed CI_Loader t...joelcox1-2/+13
2011-01-16Removed configs from environments and corrected for fallbackjoelcox1-6/+11
2011-01-16Changed loading process for database config to check for config for the set e...joelcox1-1/+15
2011-01-16Fixed bug that prevented global config from loading on errorjoelcox1-5/+8
2011-01-16sharing some work on model instancesJohn Crepezzi1-11/+74
2011-01-15Split basic configuration in three environments, providing fallback to globaljoelcox2-8/+14
2011-01-13Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon1-1/+1
2011-01-13Added access scope to Email library and allow method chaining from $this->ema...Phil Sturgeon1-61/+64
2011-01-12Removed trailing slash from $this->uri->ruri_string(). Fixes #292Eric Barnes1-1/+1
2011-01-11Reworked convert_foreign_characters in text helper. Thanks to Mario Ricalde.Eric Barnes1-13/+4
2011-01-11 Changed || to OR to match coding standardsEric Barnes1-1/+1
2011-01-10Fixed a bug (#14628) where the DATE_ISO8601 variable was returning an incorre...Greg Aker1-1/+1
2011-01-07Automated merge with http://hg.ellislab.com/CodeIgniter2Pascal Kriete98-144/+182
2011-01-07Adding batch insert and batch update to the mysqli driver.Pascal Kriete1-0/+69
2011-01-06Altered User agent library so that is_browser(), is_mobile() and is_robot() c...Phil Sturgeon1-30/+65
2011-01-05Hey look, it's 2011Greg Aker95-95/+95
2011-01-05Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon5-52/+163
2011-01-05Use arrays in DBForge for constraint for things like decimal, float, numeric,...Phil Sturgeon1-4/+19
2011-01-05If the data is an array output them one at a time. E.g: form_input('name[]', ...Phil Sturgeon1-0/+7
2011-01-04Added ability to auto load package config files. Fixes #281Eric Barnes1-8/+21
2010-12-31Added support for calling controllers, methods and passing parameters via com...Phil Sturgeon1-4/+33
2010-12-29Changed email library to allow setting different user-agent. Fixes #286Eric Barnes1-19/+19
2010-12-27Implemented GET string support from Dan Horrigan and modified it slightly. Al...Phil Sturgeon14-67/+995