Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-12-27 | Revert "Abstracting the loading of files in the config directory depending ↵ | Greg Aker | 6 | -121/+127 | |
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a. | |||||
2011-12-26 | Merge pull request #680 from bubbafoley/load_get_vars | Phil Sturgeon | 1 | -0/+14 | |
Added method get_vars() to CI_Loader. | |||||
2011-12-26 | Merge pull request #826 from EllisLab/feature/abstract-config-load | Phil Sturgeon | 6 | -127/+121 | |
Abstracting the loading of files in the config directory depending on environments | |||||
2011-12-26 | Changes in the UTF8 Class. | Greg Aker | 1 | -15/+10 | |
- Adding error suppression ("@") on the preg_match() in the constructor to help prevent errors if PCRE doesn't support Unicode - Adding method visibility. - Changed comparisons on integers/booleans to explicit. eg: !==/=== | |||||
2011-12-25 | Abstracting the loading of files in the config directory depending on ↵ | Greg Aker | 6 | -127/+121 | |
environments. | |||||
2011-12-25 | Fixing soft tabs in a few files. | Greg Aker | 4 | -4/+4 | |
2011-12-01 | Removed `$_SERVER['REMOTE_ADDR']` following feedback | Jack Webb-Heller | 1 | -1/+1 | |
2011-12-01 | CodeIgniter ignores the set config value for Maximum Execution Time, ↵ | Jack Webb-Heller | 1 | -2/+6 | |
overwriting it with its own value of 300 seconds. Whilst this is sensible in the vast majority of situations (browsers), when running a script from CLI, it is likely that execution times may need to be longer. Therefore, don't override the time limit if being run from the CLI - instead default back to PHP's own configuration. | |||||
2011-11-22 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 1 | -0/+1 | |
2011-11-22 | Merge master (2.1.0) and fixed conflicts. | Phil Sturgeon | 2 | -26/+39 | |
2011-11-21 | Added HTTP status code 422 (Unprocessable Entity) to set_status_header() | Chris Rosser | 1 | -0/+1 | |
2011-11-19 | add method get_vars() to CI_Loader to retrieve all variables loaded with ↵ | Shane Pearson | 1 | -0/+14 | |
$this->load->vars() | |||||
2011-11-14 | Tweaking the xss filter for IE <comment> tags, parameter injection, and ↵ | Pascal Kriete | 1 | -50/+41 | |
weird html5 attributes. | |||||
2011-11-14 | Removing stray docblocks | Pascal Kriete | 1 | -12/+0 | |
2011-11-02 | Fix #8 - Load core classes from the application folder first. | Shane Pearson | 1 | -3/+3 | |
2011-10-28 | add html_escape() function to escape HTML. | kenjis | 1 | -0/+24 | |
2011-10-27 | Bumped CodeIgniter version to 2.1.0. | Phil Sturgeon | 1 | -1/+1 | |
2011-10-27 | get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lower | Andrey Andreev | 1 | -4/+7 | |
2011-10-27 | CI_Loader::driver() processes empty library. Fixed. | Tom Klingenberg | 1 | -0/+5 | |
This causes endless recursion calls _ci_load_class(), see #550 | |||||
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 16 | -65/+257 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-10-20 | get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lower | Andrey Andreev | 1 | -2/+6 | |
2011-10-07 | CI_Loader::driver() processes empty library. Fixed. | Tom Klingenberg | 1 | -0/+5 | |
This causes endless recursion calls _ci_load_class(), see #550 | |||||
2011-10-05 | Fix location file Security Class to core folder | purwandi | 1 | -1/+1 | |
2011-10-04 | Clean up core Security class | Andrey Andreev | 1 | -50/+19 | |
2011-09-30 | cleanup docblocks, remove dated CI_CORE constant | freewil | 1 | -20/+0 | |
2011-09-25 | Fix #484 - Hash is never set to the cookie | Chris Berthe | 1 | -1/+2 | |
2011-09-24 | Suppress warnings generated by get_magic_quotes_gpc() (issue #467) | Andrey Andreev | 1 | -1/+1 | |
2011-09-23 | fixed issue #192 | Rommel Castro A | 1 | -0/+1 | |
2011-09-13 | Update: change _fetch_from_array form private to protected | Bo-Yi Wu | 1 | -3/+3 | |
2011-09-12 | Update: modified return bool value on comment | Bo-Yi Wu | 1 | -1/+1 | |
2011-09-12 | Update: check filter_var function exist | Bo-Yi Wu | 1 | -1/+1 | |
2011-09-12 | Update: add public or private prefix. | Bo-Yi Wu | 1 | -13/+17 | |
2011-09-12 | Update: if php version >= 5.2, use filter_var to check validate ip. | Bo-Yi Wu | 1 | -0/+6 | |
2011-08-28 | always use charset config item | freewil | 1 | -2/+9 | |
2011-08-28 | always use charset config item | freewil | 1 | -1/+2 | |
2011-08-26 | Changed CI_VERSION to represent develop branch | Eric Barnes | 1 | -1/+1 | |
2011-08-26 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 5 | -15/+53 | |
2011-08-26 | changed private functions to protected so MY_URI can override them. | Paul | 1 | -2/+2 | |
2011-08-25 | fixed logical operator OR in core/lang | Frank Michel | 1 | -1/+1 | |
2011-08-25 | fix for issue #292 with multiple language files | Frank Michel | 1 | -2/+2 | |
2011-08-25 | Merge pull request #291 from kenjis/html_escape | Greg Aker | 1 | -0/+24 | |
add html_escape() function to escape HTML. | |||||
2011-08-25 | Merge remote-tracking branch 'alexbilbie/csrf-override' into feature/csrf-verify | Eric Barnes | 1 | -6/+20 | |
Conflicts: system/core/Security.php | |||||
2011-08-25 | add html_escape() function to escape HTML. | kenjis | 1 | -0/+24 | |
2011-08-24 | Merge pull request #270 from bubbafoley/extend-autoloader | Phil Sturgeon | 1 | -1/+1 | |
make _ci_autoloader() protected so it can be properly extended. | |||||
2011-08-23 | make _ci_autoloader() protected so it can be properly extended. | Shane Pearson | 1 | -1/+1 | |
2011-08-22 | Fix #8 - Load core classes from the application folder first. | Shane Pearson | 1 | -3/+3 | |
2011-08-21 | Merge branch 'issue227' of https://github.com/johnbellone/CodeIgniter into ↵ | Phil Sturgeon | 1 | -4/+4 | |
develop | |||||
2011-08-21 | Changed order | John Bellone | 1 | -1/+1 | |
2011-08-21 | Making changes to stop remote spoofing | John Bellone | 1 | -4/+4 | |
2011-08-21 | Added new config parameter "csrf_exclude_uris" which allows for URIs to be ↵ | Alex Bilbie | 1 | -1/+11 | |
whitelisted from CSRF verification. Fixes #149 |