Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-08-14 | Added some docs to CI core files | David Behler | 2 | -13/+64 | |
2011-08-14 | Added some docs to CI core files | David Behler | 3 | -0/+32 | |
2011-08-10 | Reset loaded files arrays in the Loader so the 404_override controller can ↵ | Shane Pearson | 2 | -11/+12 | |
access autoloaded libraries. If a controller exists but a method is not found the current $CI instance is unset and a new one is created for the 404 override controller. Any autoloaded libraries will not be available to the 404 override controller because the Loader sees them as already have been loaded. To fix this we need to reset the loader. I implemented it via an initialize function that resets the loaded files arrays and then calls the autoloader. This also simplifies things in CI_Controller because it only has to call one loader function instead. | |||||
2011-08-10 | 404_override route now works for missing controllers in subdirectories and ↵ | Shane Pearson | 2 | -2/+33 | |
functions that fail the security check in CodeIgniter.php | |||||
2011-07-23 | Added ->load->get_var() to check against ->load->_ci_cached_vars[]. | Phil Sturgeon | 1 | -0/+15 | |
2011-07-02 | hand merged remaining unresolved files following the backout of ↵ | Derek Jones | 1 | -13/+48 | |
648b42a75739, which was a NON-trivial whitespace commit | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 16 | -194/+194 | |
broke the Typography class's string replacements, for instance | |||||
2011-05-08 | Wrapped all common functions to check if it already exists. This allows ↵ | Dan Horrigan | 1 | -13/+48 | |
anyone to override a lot more of the core by simply defining these function prior to loading them. | |||||
2011-04-27 | Reverting last change. Don't know what I was thinking. :( | Eric Barnes | 1 | -1/+1 | |
2011-04-26 | Automatic base_url generation was missing a ending slash. | Eric Barnes | 1 | -1/+1 | |
2011-04-25 | Fixed double-space typo. | Razican | 16 | -194/+194 | |
2011-04-22 | Fixed re-searching for config file even though one had been loaded ($found ↵ | katzgrau | 1 | -1/+2 | |
was set to true, never reset). Also fixes getsparks issue. | |||||
2011-04-21 | Flipping around contents of a conditional in _ci_load() so the small bits ↵ | Greg Aker | 1 | -6/+6 | |
are on top. | |||||
2011-04-20 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Greg Aker | 2 | -24/+58 | |
2011-04-20 | Refactoring the loader to set protected class variables. | Greg Aker | 2 | -24/+58 | |
Moved _ci_autoload(), which is used in CI_Controller to be a public method. Also added CI_Loader::set_base_classes() to be called in the controller so we're not setting protected vars in another class. Also refactored in the form_helper so it's not trying to access protected vars in CI_Loader. Added the is_loaded() method to the loader to take care of the checks that were being done there. | |||||
2011-04-20 | Change in core/Security.php to match coding standards. | Greg Aker | 1 | -1/+2 | |
2011-04-20 | Altering the loader to be able to load views from packages when adding the ↵ | Greg Aker | 2 | -53/+59 | |
package path with add_package_path(). | |||||
2011-04-19 | Removing internal references to the EXT constant. Additionally, marked the ↵ | Greg Aker | 9 | -71/+71 | |
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3. | |||||
2011-04-18 | Changed server check to ensure SCRIPT_NAME is defined. Fixes #57 | Eric Barnes | 1 | -5/+5 | |
2011-04-11 | Fix: codeigniter-reactor/199 cookie name was overwritten with token name | patwork | 1 | -2/+4 | |
2011-04-11 | Fix: codeigniter-reactor/32 unicorns are no longer mute | patwork | 1 | -4/+4 | |
2011-04-09 | Fix: codeigniter-reactor/199 CSRF config in Security class is no longer ignored | patwork | 1 | -1/+10 | |
2011-04-08 | Fix: #192 CI version constant incorrect in core/CodeIgniter | Greg Aker | 1 | -1/+1 | |
2011-04-07 | Made in Output protected again, it was only ever made public by Eric to fix ↵ | Phil Sturgeon | 1 | -1/+1 | |
an issue with the Dwoo MY_Parser, which is no reason to change core files. That Parser doesn't really even need the acess. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 6 | -48/+882 | |
stop environment checks. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 7 | -32/+39 | |
stop environment checks. | |||||
2011-04-05 | Tightening up control character handling in urls | Pascal Kriete | 1 | -23/+34 | |
2011-04-05 | Moving security to core. | Pascal Kriete | 4 | -10/+835 | |
2011-04-05 | tweaking remove_invisible_characters to make urlencoded character stripping ↵ | Pascal Kriete | 1 | -15/+13 | |
optional | |||||
2011-04-03 | Fixed loading an array of libraries. | Phil Sturgeon | 1 | -1/+1 | |
2011-04-01 | Merged changes. | Phil Sturgeon | 1 | -13/+3 | |
2011-03-22 | If you do is_really_writable() on a file that does not exist on a Windows ↵ | Eric Barnes | 1 | -1/+1 | |
server or on a Unix box with safe_mode enabled, it will create the file and leave it there. Fixes #80 | |||||
2011-03-22 | Added error logging to language. Fixes #32 | Eric Barnes | 1 | -0/+7 | |
2011-03-22 | Fixed logic and removed the error supressing | Eric Barnes | 2 | -7/+7 | |
2011-03-18 | Changed scope on parse_exec_vars. Fixes #145 | Eric Barnes | 1 | -7/+6 | |
2011-03-18 | Fixed coding to match standards from previous releases | Eric Barnes | 2 | -4/+4 | |
2011-03-17 | load config files from environment specific locations in core classes, ↵ | bubbafoley | 4 | -4/+37 | |
helpers and libraries | |||||
2011-03-16 | Standardized newlines even more extensively in Input class. | Phil Sturgeon | 1 | -1/+1 | |
2011-03-15 | constants.php will be loaded from the environment specific config folder if ↵ | Phil Sturgeon | 1 | -2/+9 | |
available. | |||||
2011-03-10 | Added full docs for new ENVIRONMENT constant. | katzgrau | 1 | -1/+1 | |
2011-03-09 | Added 2.0.1 upgrade guide and changed the constants ready. | Phil Sturgeon | 1 | -1/+1 | |
2011-03-09 | Merged recent Core changes and fixed conflict. | Phil Sturgeon | 9 | -151/+344 | |
2011-03-09 | Flipping Phil's IS_CORE to true. | Pascal Kriete | 1 | -1/+1 | |
2011-03-08 | Added the constant CI_CORE to help differentiate between Core: TRUE and ↵ | Phil Sturgeon | 1 | -0/+7 | |
Reactor: FALSE. | |||||
2011-03-08 | Added the constant CI_CORE to help differentiate between Core: TRUE and ↵ | Phil Sturgeon | 1 | -0/+7 | |
Reactor: FALSE. | |||||
2011-03-08 | Added $this->output->set_content_type() and method chaining to other methods. | Phil Sturgeon | 1 | -7/+60 | |
2011-02-18 | Bugfix in foreach-loop ('name' must be last, as it also is the array's ↵ | tobiasbg | 1 | -8/+7 | |
name); consistent handling for 'cookie_secure' config item | |||||
2011-02-16 | Merged CodeIgniter Core changes and integrated rob1's secure cookie change ↵ | Phil Sturgeon | 8 | -142/+283 | |
into my secure cookie change. | |||||
2011-02-16 | Secure cookies can now be made with the set_cookie() helper and Input Class ↵ | Phil Sturgeon | 1 | -3/+4 | |
method. | |||||
2011-02-15 | Input post() and get() will now return a full array if the first argument is ↵ | Phil Sturgeon | 1 | -21/+15 | |
not provided. |