summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2011-08-15Added some docs to CI core filesDavid Behler5-49/+224
2011-08-14Added some docs to CI core filesDavid Behler5-13/+110
2011-08-14Added some docs to CI core filesDavid Behler1-0/+14
2011-08-14Added some docs to CI core filesDavid Behler2-13/+64
2011-08-14Added some docs to CI core filesDavid Behler3-0/+32
2011-08-10Reset loaded files arrays in the Loader so the 404_override controller can ↵Shane Pearson2-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-10404_override route now works for missing controllers in subdirectories and ↵Shane Pearson2-2/+33
functions that fail the security check in CodeIgniter.php
2011-08-09Merge pull request #29 from darkhouse/developPhil Sturgeon2-4/+12
Minor change to MySQL and MySQLi drivers.
2011-07-23Fixed having method to insert quotes.Adam Jackett1-1/+1
2011-07-23Fixed mysql and mysqli drivers to set NOT NULL as default for creating ↵Adam Jackett2-4/+12
fields. All other drivers were correct.
2011-07-23Added ->load->get_var() to check against ->load->_ci_cached_vars[].Phil Sturgeon1-0/+15
2011-07-20Changed Cart library to return the if inserted successfully. This will be ↵Phil Sturgeon1-4/+4
fine for anyone using () == true. http://codeigniter.uservoice.com/forums/40508-codeigniter-reactor/suggestions/2055829-last-rowid-of-cart
2011-07-20Updated Email class to use protected instead of private: ↵Phil Sturgeon1-59/+59
http://codeigniter.uservoice.com/forums/40508-codeigniter-reactor/suggestions/2056113-private-functions-suck
2011-07-20Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵Phil Sturgeon1-1/+3
develop
2011-07-19Merge pull request #26 from marcoscoelho/cart_total_itemsPhil Sturgeon1-1/+3
Count items in the cart based on quantity, not on how many different things are in there.
2011-07-18sync total items count and total amount price; by sum of quantity of each ↵MarcosCoelho1-1/+3
item in cart
2011-07-17Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵Phil Sturgeon1-2/+2
develop
2011-07-16CSRF field is only added when post method is used and action is internal. ↵Joël Cox1-2/+2
Closes #165
2011-07-16enable use of param in a callback rule, on behalf of marcoscoelho.Phil Sturgeon1-1/+1
2011-07-15... set_dbprefix(). Programatically set the prefix, great for multi-site ↵Phil Sturgeon1-0/+15
systems that "namespace" with prefixes.
2011-07-15Was working on this file so PHP5ified the method visibility scopes. ↵Phil Sturgeon1-154/+106
Pointless, but was adding...
2011-07-03reverted texb.ttf font which had been compromised in 982b43c3590a by another ↵Derek Jones1-0/+0
massive whitespace 'cleanup' commit
2011-07-02hand merged remaining unresolved files following the backout of ↵Derek Jones11-135/+568
648b42a75739, which was a NON-trivial whitespace commit
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones102-986/+986
broke the Typography class's string replacements, for instance
2011-05-20modified the 'use_set_names' variable in the MySQL/i drivers to be a class ↵Derek Jones2-10/+12
property instead of static, in case multiple database servers are connected to in a single request. Also clarified description of the 'dbcollat' setting in the configuration files
2011-05-09Removed accidental whitespace.Phil Sturgeon1-1/+1
2011-05-09Added 'is_unique' which is a brilliant feature I came up with all by myself. ↵Phil Sturgeon2-52/+70
Not based on code and ideas from Michael Wales, Burak Guzel, Zack Kitzmiller or Dan Horrigan at all. If they say any differently they are lying.
2011-05-08Merged tip.Phil Sturgeon104-1589/+1836
2011-05-08Wrapped all common functions to check if it already exists. This allows ↵Dan Horrigan1-13/+48
anyone to override a lot more of the core by simply defining these function prior to loading them.
2011-05-06Fix #275 -- regression in db::_compile_select(). Thanks @patwork for the patchGreg Aker1-11/+15
2011-05-04Made a few uniform changes to Migrations.Phil Sturgeon1-10/+9
2011-05-04Reverted partial MySQL driver change which double-escaped some fields.Phil Sturgeon1-3/+3
2011-05-04Fixed conflict with migrations merge.Phil Sturgeon3-3/+355
2011-05-04Added Migration class and language file.Phil Sturgeon2-46/+62
2011-04-27merging in changesGreg Aker102-1004/+1010
2011-04-27Added insert_batch() function to the PostgreSQL database driver. Thanks to ↵Greg Aker1-0/+18
epallerols for the patch.
2011-04-27Reverting last change. Don't know what I was thinking. :(Eric Barnes1-1/+1
2011-04-26Automatic base_url generation was missing a ending slash.Eric Barnes1-1/+1
2011-04-25swapping out preg_replace() in the driver library where str_replace() works ↵Greg Aker1-4/+4
just fine.
2011-04-25Fixed double-space typo.Razican102-986/+986
2011-04-25Fixed #60.Razican1-11/+11
2011-04-23Removing debug code accidentally committed.Greg Aker1-1/+1
2011-04-23typo in modification to MySQLi driver. Fixes #236Derek Jones1-1/+1
2011-04-22default value of $total_rows in Pagination class should be number. And fix ↵kenjis1-1/+1
User Guide Pagination Class's Example which uses string to number variable.
2011-04-22Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorGreg Aker1-2/+2
2011-04-22Fix #233 Fixing a regression in _get_validation_object() in the form helper ↵Greg Aker1-2/+2
after some refactoring the other day.
2011-04-22Fixed re-searching for config file even though one had been loaded ($found ↵katzgrau1-1/+2
was set to true, never reset). Also fixes getsparks issue.
2011-04-21Flipping around contents of a conditional in _ci_load() so the small bits ↵Greg Aker1-6/+6
are on top.
2011-04-20Fixed a bug (Core #340) where when passing in the second parameter to ↵Greg Aker1-12/+8
$this->db->select(), column names in subsequent queries would not be properly escaped.
2011-04-20Altered Session to use a longer match against the user_agent string. See ↵Greg Aker1-2/+2
upgrade notes if using database sessions.</li