summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-01-07Improve the Config libraryAndrey Andreev1-74/+40
2012-01-07Improve core/Common.phpAndrey Andreev1-67/+66
2012-01-07Improve core/CodeIgniter.phpAndrey Andreev1-23/+15
2012-01-07Improve the Benchmark libraryAndrey Andreev1-14/+9
2012-01-02Updating copyright date to 2012Greg Aker16-16/+16
2011-12-31Update system/core/Security.phpRS711-3/+8
2011-12-27Revert "Abstracting the loading of files in the config directory depending ↵Greg Aker6-121/+127
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a.
2011-12-26Merge pull request #680 from bubbafoley/load_get_varsPhil Sturgeon1-0/+14
Added method get_vars() to CI_Loader.
2011-12-26Merge pull request #826 from EllisLab/feature/abstract-config-loadPhil Sturgeon6-127/+121
Abstracting the loading of files in the config directory depending on environments
2011-12-26Changes in the UTF8 Class.Greg Aker1-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-25Abstracting the loading of files in the config directory depending on ↵Greg Aker6-127/+121
environments.
2011-12-25Fixing soft tabs in a few files.Greg Aker4-4/+4
2011-12-01Removed `$_SERVER['REMOTE_ADDR']` following feedbackJack Webb-Heller1-1/+1
2011-12-01CodeIgniter ignores the set config value for Maximum Execution Time, ↵Jack Webb-Heller1-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-22Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-0/+1
2011-11-22Merge master (2.1.0) and fixed conflicts.Phil Sturgeon2-26/+39
2011-11-21Added HTTP status code 422 (Unprocessable Entity) to set_status_header()Chris Rosser1-0/+1
2011-11-19add method get_vars() to CI_Loader to retrieve all variables loaded with ↵Shane Pearson1-0/+14
$this->load->vars()
2011-11-14Tweaking the xss filter for IE <comment> tags, parameter injection, and ↵Pascal Kriete1-50/+41
weird html5 attributes.
2011-11-14Removing stray docblocksPascal Kriete1-12/+0
2011-11-02Fix #8 - Load core classes from the application folder first.Shane Pearson1-3/+3
2011-10-28add html_escape() function to escape HTML.kenjis1-0/+24
2011-10-27Bumped CodeIgniter version to 2.1.0.Phil Sturgeon1-1/+1
2011-10-27get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lowerAndrey Andreev1-4/+7
2011-10-27CI_Loader::driver() processes empty library. Fixed.Tom Klingenberg1-0/+5
This causes endless recursion calls _ci_load_class(), see #550
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones16-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-20get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lowerAndrey Andreev1-2/+6
2011-10-07CI_Loader::driver() processes empty library. Fixed.Tom Klingenberg1-0/+5
This causes endless recursion calls _ci_load_class(), see #550
2011-10-05Fix location file Security Class to core folderpurwandi1-1/+1
2011-10-04Clean up core Security classAndrey Andreev1-50/+19
2011-09-30cleanup docblocks, remove dated CI_CORE constantfreewil1-20/+0
2011-09-25Fix #484 - Hash is never set to the cookieChris Berthe1-1/+2
2011-09-24Suppress warnings generated by get_magic_quotes_gpc() (issue #467)Andrey Andreev1-1/+1
2011-09-23fixed issue #192Rommel Castro A1-0/+1
2011-09-13Update: change _fetch_from_array form private to protectedBo-Yi Wu1-3/+3
2011-09-12Update: modified return bool value on commentBo-Yi Wu1-1/+1
2011-09-12Update: check filter_var function existBo-Yi Wu1-1/+1
2011-09-12Update: add public or private prefix.Bo-Yi Wu1-13/+17
2011-09-12Update: if php version >= 5.2, use filter_var to check validate ip.Bo-Yi Wu1-0/+6
2011-08-28always use charset config itemfreewil1-2/+9
2011-08-28always use charset config itemfreewil1-1/+2
2011-08-26Changed CI_VERSION to represent develop branchEric Barnes1-1/+1
2011-08-26Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon5-15/+53
2011-08-26changed private functions to protected so MY_URI can override them.Paul1-2/+2
2011-08-25fixed logical operator OR in core/langFrank Michel1-1/+1
2011-08-25fix for issue #292 with multiple language filesFrank Michel1-2/+2
2011-08-25Merge pull request #291 from kenjis/html_escapeGreg Aker1-0/+24
add html_escape() function to escape HTML.
2011-08-25Merge remote-tracking branch 'alexbilbie/csrf-override' into feature/csrf-verifyEric Barnes1-6/+20
Conflicts: system/core/Security.php
2011-08-25add html_escape() function to escape HTML.kenjis1-0/+24
2011-08-24Merge pull request #270 from bubbafoley/extend-autoloaderPhil Sturgeon1-1/+1
make _ci_autoloader() protected so it can be properly extended.