Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-01-24 | Move db_select() call from CI_DB_driver::initialize() to db_connect() | Andrey Andreev | 2 | -1/+2 | |
so that it's only called by drivers that need it ('mysql', 'mssql'). As proposed in issue #2187. | |||||
2013-01-23 | Removed slash from URI helper doc | Melvin Lammerts | 1 | -2/+2 | |
In my current projects I don't see '/controller/method' but 'controller/method' when calling uri_string(). | |||||
2013-01-21 | Partially implement PR #2155 | Andrey Andreev | 1 | -0/+1 | |
2013-01-15 | [ci skip] Fix issue #2157 - docs on the email library | Andrey Andreev | 1 | -23/+29 | |
2013-01-12 | Implement autoload model aliasing (#2117) | Andrey Andreev | 2 | -1/+2 | |
2013-01-10 | Fix SQLSRV escape_str() | Andrey Andreev | 1 | -0/+1 | |
2013-01-09 | Syntax fixes in documentation source | vlakoff | 7 | -51/+51 | |
2013-01-03 | Merge pull request #2075 from sourcejedi/patch-1 | Andrey Andreev | 1 | -5/+5 | |
doc: xss_clean() method is in Security, not Input | |||||
2013-01-03 | doc: fix table markup in previous commit | Alan Jenkins | 1 | -3/+3 | |
"These "border lines" need to have a length higher or equal to the longest line in the table that would be generated, so you'll have to update them as well." - narfbg | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 4 | -7/+7 | |
2012-12-20 | [ci skip] Minor style/spacing changes following PR #2087 | Andrey Andreev | 1 | -1/+1 | |
2012-12-20 | fixes #2081 : fix change log entry | Andrew Podner | 1 | -1/+1 | |
Signed-off-by:Andrew Podner <a.podner@me.com> | |||||
2012-12-20 | fixes #2081 : change parameter/variable name to 'foreign_key_checks', update ↵ | Andrew Podner | 2 | -15/+16 | |
change log Signed-off-by:Andrew Podner <a.podner@me.com> | |||||
2012-12-19 | Resolves issue #2081 : provides an option to include statements to disable ↵ | Andrew Podner | 1 | -13/+14 | |
and re-enable foreign key checks in a MySQL database backup output statement. | |||||
2012-12-17 | Fix 2073 | Andrey Andreev | 1 | -3/+3 | |
2012-12-16 | doc: xss_clean() method is in Security, not Input | Alan Jenkins | 1 | -2/+2 | |
The Input doc does talk about xss filtering, but they refer you to Security for details, which is where the function is actually defined. It gives more detail about what the function is supposed to do, and avoids some irrelevance. It's probably not a big deal; it just looks wrong. It _might_ have been responsible for [confusion](http://stackoverflow.com/questions/13570522/this-input-xss-cleandata-giving-fatal-error-with-codeigniter) sometimes. | |||||
2012-12-14 | Fix issue #539 | Andrey Andreev | 3 | -82/+116 | |
Form validation language line keys were not prefixed. They are now prefixed with 'form_validation_' in order to avoid collisions. The old keys will still work if a prefixed match is not found, but are DEPRECATED and will be removed in the next major version. Also added upgrade notes and changelog entries for the new error message format from PR #961. | |||||
2012-12-13 | Remove slash! | Eric Roberts | 1 | -1/+1 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2012-12-12 | Format tweaks | Eric Roberts | 1 | -2/+2 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2012-12-12 | Merge branch 'refs/heads/develop' into feature/form_error_msgs | Eric Roberts | 110 | -2809/+5599 | |
Conflicts: system/language/english/form_validation_lang.php user_guide_src/source/libraries/form_validation.rst Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2012-12-08 | Added changelog entry. | Aaron Adams | 1 | -0/+1 | |
Signed-off-by: Aaron Adams <aaron@aaronadams.ca> | |||||
2012-12-07 | [ci skip] Correct a changelog entry | Andrey Andreev | 1 | -1/+1 | |
2012-12-07 | Fix issue #2061 | Andrey Andreev | 1 | -0/+1 | |
2012-12-04 | Rename DB_result _data_seek() to data_seek() and make it publicly available | Andrey Andreev | 2 | -12/+39 | |
(as requested in #2050) | |||||
2012-12-03 | Add min_width and min_height options to the Upload class | Andrey Andreev | 2 | -47/+56 | |
(manually implementing outdated PR #636) | |||||
2012-12-03 | Improve schema support for Postgre | Andrey Andreev | 1 | -0/+1 | |
2012-12-03 | [ci skip] Cleaned some spaces | Andrey Andreev | 1 | -2/+2 | |
2012-11-30 | Add CI_Output::delete_cache() | Andrey Andreev | 2 | -4/+12 | |
(an improved version of PR #609) | |||||
2012-11-29 | Fix #2041 | Andrey Andreev | 1 | -18/+19 | |
2012-11-29 | Added CI_Output::get_header() | Andrey Andreev | 2 | -6/+27 | |
(an improved version of PR #645) Also fixed get_content_type() to only return the MIME value and created Output library unit tests for both of these methods. | |||||
2012-11-26 | Language helper lang() to accept optional HTML attributes | Andrey Andreev | 2 | -6/+7 | |
(an improved version of PR #1235) | |||||
2012-11-26 | Implement cascade-style loading of language files | Andrey Andreev | 2 | -25/+22 | |
(as requested in issue #452) | |||||
2012-11-26 | Add 'valid_url' rule to Form Validation (issue #1966) | Andrey Andreev | 2 | -2/+4 | |
2012-11-26 | CI_Email::print_debugger() option to limit the type of data to be printed | Andrey Andreev | 2 | -1/+12 | |
(an alternative to PR #1759; partially solves issue #1742) | |||||
2012-11-25 | Merge pull request #2026 from johnathancroom/keep_flash_data_array | Andrey Andreev | 2 | -2/+5 | |
keep_flashdata accepts array | |||||
2012-11-25 | Changelog change | Johnathan Croom | 1 | -1/+1 | |
2012-11-25 | Improved array keey_flashdata + Changelog | Johnathan Croom | 1 | -0/+1 | |
2012-11-25 | Added support for extending individual driver classes and driver unit tests | dchill42 | 3 | -11/+13 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-11-24 | keep_flashdata accepts array | Johnathan Croom | 1 | -1/+3 | |
2012-11-23 | Fix #113 | Andrey Andreev | 1 | -0/+1 | |
2012-11-22 | Fix issue #118 (manually implementing PR #1832) | Andrey Andreev | 2 | -2/+10 | |
2012-11-22 | Added support for stream-like downloads of existing files to force_download() | Andrey Andreev | 2 | -7/+11 | |
Based on code/ideas from PR #365, #1254 | |||||
2012-11-22 | [ci skip] Fix a typo in the styleguide | Andrey Andreev | 1 | -1/+1 | |
2012-11-20 | Fix #18 | Andrey Andreev | 1 | -0/+1 | |
2012-11-19 | Documentation: fix typos in name of application folder | Alan Jenkins | 4 | -9/+9 | |
The name is "application/", not "applications/". (This commit does not change managing_apps.rst, where "applications/" is used intentionally). | |||||
2012-11-19 | Add db_set_charset() support for the mssql driver | Andrey Andreev | 1 | -0/+1 | |
2012-11-17 | Fix issues #751 and #2004 | Andrey Andreev | 1 | -0/+2 | |
2012-11-13 | [ci skip] Cosmetic changes to the 'News section' tutorial | Andrey Andreev | 1 | -87/+87 | |
2012-11-13 | [ci skip] Add changelog entry for PR #1258 | Andrey Andreev | 1 | -0/+1 | |
2012-11-13 | Clean-up following PR #1949 | Andrey Andreev | 1 | -2/+2 | |