Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-04-20 | Visual updates to the welcome_message view file and default error templates. ↵ | Greg Aker | 5 | -87/+196 | |
Thanks to danijelb for the pull request. | |||||
2011-04-20 | Updating Documentation on package view loading | Greg Aker | 1 | -10/+15 | |
2011-04-20 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Greg Aker | 3 | -37/+69 | |
2011-04-20 | Refactoring the loader to set protected class variables. | Greg Aker | 3 | -37/+69 | |
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 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Derek Jones | 5 | -3/+43 | |
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 | modified MySQL and MySQLi drivers to address a potential SQL injection ↵ | Derek Jones | 5 | -3/+43 | |
attack vector when multi-byte character set connections are employed. (Does not impact Latin-1, UTF-8, etc. encodings) | |||||
2011-04-19 | Removed APPPATH.'third_party' from the packages autoloader to negate ↵ | Greg Aker | 3 | -1/+14 | |
needless file stats if no packages exist or if the developer does not load any other packages by default. | |||||
2011-04-19 | 1/2 reverting a previous change to the form_helper. Wrapping hidden form ↵ | Greg Aker | 1 | -1/+1 | |
elements in <div style="display:none"></div> instead of an empty div. If a user is styling form div {} they can run into display issues, so something is needed. | |||||
2011-04-19 | Removing internal references to the EXT constant. Additionally, marked the ↵ | Greg Aker | 26 | -113/+218 | |
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3. | |||||
2011-04-18 | changeset: 2204:37301a84c8be | Greg Aker | 2 | -55/+83 | |
tag: tip user: Greg Aker <greg.aker@ellislab.com> date: Mon Apr 18 15:51:28 2011 -0500 summary: Adding toggle show/hide on database queries in the output profiler. Added a profiler config item to set a threshold of when to hide the queries by default. Additionally, fixed a bug I created earlier today by marking the $CI class var in CI_Profiler as private. | |||||
2011-04-18 | changeset: 2202:06a75a1bd622 | Greg Aker | 2 | -2/+19 | |
tag: tip user: Greg Aker <greg.aker@ellislab.com> date: Mon Apr 18 11:10:37 2011 -0500 summary: Tweak to session class all_userdata() to just return the userdata array. Also documented previously undocumented all_userdata() method. | |||||
2011-04-18 | Added Session Class userdata to the output profiler. Additionally, added a ↵ | Greg Aker | 3 | -7/+43 | |
show/hide toggle on HTTP Headers, Session Data and Config Variables. | |||||
2011-04-18 | Added an optional third parameter to heading() which allows adding html ↵ | Greg Aker | 3 | -2/+13 | |
attributes to the rendered heading tag. | |||||
2011-04-18 | Changed path in footer comment of cache dummy. | Eric Barnes | 1 | -12/+12 | |
2011-04-18 | Added ENVIRONMENT to reserved constants. Fixes #196 | Eric Barnes | 2 | -0/+18 | |
2011-04-18 | Changed server check to ensure SCRIPT_NAME is defined. Fixes #57 | Eric Barnes | 1 | -5/+5 | |
2011-04-15 | update Prev/Next Topic link on user_guide/libraries/zip.html | kenjis | 1 | -1/+1 | |
2011-04-15 | fix title and update Prev/Next Topic link on ↵ | kenjis | 1 | -3/+3 | |
user_guide/libraries/javascript.html | |||||
2011-04-15 | update Prev/Next Topic link on user_guide/libraries/caching.html | kenjis | 1 | -2/+2 | |
2011-04-15 | update Prev/Next Topic link on user_guide/helpers/cookie_helper.html | kenjis | 1 | -1/+1 | |
2011-04-15 | update Prev/Next Topic link on user_guide/helpers/captcha_helper.html | kenjis | 1 | -3/+3 | |
2011-04-15 | update Prev/Next Topic link on user_guide/helpers/array_helper.html | kenjis | 1 | -2/+2 | |
2011-04-15 | update Prev/Next Topic link on user_guide/database/utilities.html | kenjis | 1 | -1/+1 | |
2011-04-15 | update Prev/Next Topic link on user_guide/database/index.html | kenjis | 1 | -1/+1 | |
2011-04-15 | add "Using CodeIgniter Drivers" and "Creating Your Own Driver" in TOC | kenjis | 2 | -0/+4 | |
2011-04-25 | Fixing up a tabs vs spaces inconsistency in DB_Result | Greg Aker | 1 | -39/+44 | |
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: codeigniter-reactor/127 Form_validation rule error logging | patwork | 1 | -1/+5 | |
2011-04-08 | There is absolutely no need to specify class name (it will validate anyway). | patwork | 1 | -2/+2 | |
2011-04-08 | Deals with language errors after codeigniter-reactor commit r2307:c43c6dea56fb | patwork | 1 | -22/+22 | |
2011-04-08 | merge with codeigniter-reactor | patwork | 1 | -2/+2 | |
2011-04-08 | Fix: codeigniter-reactor/193 incorrect driver filepaths | patwork | 1 | -2/+2 | |
2011-04-08 | Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor | Phil Sturgeon | 1 | -0/+1 | |
2011-04-08 | Fixed bug with form_helper calling now protected variables. | Phil Sturgeon | 1 | -1/+1 | |
2011-04-08 | Updated Changelog to reflect "CLI usage" documentation being added. | Phil Sturgeon | 1 | -0/+1 | |
2011-04-08 | Fix: #192 CI version constant incorrect in core/CodeIgniter | Greg Aker | 1 | -1/+1 | |
2011-04-08 | Fixing a bug in the form_helper where csrf_token_name and csrf_hash were ↵ | Greg Aker | 2 | -1/+3 | |
referencing class properties in the Security class that were moved. | |||||
2011-04-07 | Added tag v2.0.2 for changeset 521076012037 | Pascal Kriete | 0 | -0/+0 | |
2011-04-07 | And now properly prepped for 2.0.2, sigh | Pascal Kriete | 4 | -12/+99 | |
2011-04-07 | Putting the v2.0.1 tag back to where it belongs | Pascal Kriete | 0 | -0/+0 | |
2011-04-07 | Removed tag v2.0.1, should've been 2.0.2 | Pascal Kriete | 0 | -0/+0 | |
2011-04-07 | Wow, I screwed that up, Reactor is going to 2.0.2 not 2.0.1 | Pascal Kriete | 130 | -133/+133 | |
2011-04-07 | Added CLI documentation. | Phil Sturgeon | 3 | -0/+153 | |
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-07 | Changed the 'plural' function so that it doesn't ruin the captalization of ↵ | Phil Sturgeon | 2 | -13/+16 | |
your string. It also take into consideration acronyms which are all caps. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 15 | -379/+441 | |
stop environment checks. |