summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/changelog.rst
AgeCommit message (Collapse)AuthorFilesLines
2013-01-21Partially implement PR #2155Andrey Andreev1-0/+1
2013-01-12Implement autoload model aliasing (#2117)Andrey Andreev1-0/+1
2013-01-10Fix SQLSRV escape_str()Andrey Andreev1-0/+1
2013-01-09Syntax fixes in documentation sourcevlakoff1-1/+1
2012-12-20[ci skip] Minor style/spacing changes following PR #2087Andrey Andreev1-1/+1
2012-12-20fixes #2081 : fix change log entryAndrew Podner1-1/+1
Signed-off-by:Andrew Podner <a.podner@me.com>
2012-12-20fixes #2081 : change parameter/variable name to 'foreign_key_checks', update ↵Andrew Podner1-1/+2
change log Signed-off-by:Andrew Podner <a.podner@me.com>
2012-12-17Fix 2073Andrey Andreev1-3/+3
2012-12-14Fix issue #539Andrey Andreev1-3/+5
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-08Added changelog entry.Aaron Adams1-0/+1
Signed-off-by: Aaron Adams <aaron@aaronadams.ca>
2012-12-07[ci skip] Correct a changelog entryAndrey Andreev1-1/+1
2012-12-07Fix issue #2061Andrey Andreev1-0/+1
2012-12-04Rename DB_result _data_seek() to data_seek() and make it publicly availableAndrey Andreev1-3/+5
(as requested in #2050)
2012-12-03Add min_width and min_height options to the Upload classAndrey Andreev1-2/+3
(manually implementing outdated PR #636)
2012-12-03Improve schema support for PostgreAndrey Andreev1-0/+1
2012-11-30Add CI_Output::delete_cache()Andrey Andreev1-2/+2
(an improved version of PR #609)
2012-11-29Added CI_Output::get_header()Andrey Andreev1-1/+2
(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-26Language helper lang() to accept optional HTML attributesAndrey Andreev1-1/+2
(an improved version of PR #1235)
2012-11-26Implement cascade-style loading of language filesAndrey Andreev1-3/+4
(as requested in issue #452)
2012-11-26Add 'valid_url' rule to Form Validation (issue #1966)Andrey Andreev1-2/+3
2012-11-26CI_Email::print_debugger() option to limit the type of data to be printedAndrey Andreev1-0/+1
(an alternative to PR #1759; partially solves issue #1742)
2012-11-25Merge pull request #2026 from johnathancroom/keep_flash_data_arrayAndrey Andreev1-1/+2
keep_flashdata accepts array
2012-11-25Changelog changeJohnathan Croom1-1/+1
2012-11-25Improved array keey_flashdata + ChangelogJohnathan Croom1-0/+1
2012-11-25Added support for extending individual driver classes and driver unit testsdchill421-2/+1
Signed-off-by: dchill42 <dchill42@gmail.com>
2012-11-23Fix #113Andrey Andreev1-0/+1
2012-11-22Fix issue #118 (manually implementing PR #1832)Andrey Andreev1-1/+4
2012-11-22Added support for stream-like downloads of existing files to force_download()Andrey Andreev1-2/+4
Based on code/ideas from PR #365, #1254
2012-11-20Fix #18Andrey Andreev1-0/+1
2012-11-19Documentation: fix typos in name of application folderAlan Jenkins1-1/+1
The name is "application/", not "applications/". (This commit does not change managing_apps.rst, where "applications/" is used intentionally).
2012-11-19Add db_set_charset() support for the mssql driverAndrey Andreev1-0/+1
2012-11-17Fix issues #751 and #2004Andrey Andreev1-0/+2
2012-11-13[ci skip] Add changelog entry for PR #1258Andrey Andreev1-0/+1
2012-11-13Clean-up following PR #1949Andrey Andreev1-2/+2
2012-11-13Merge pull request #1949 from compwright/developAndrey Andreev1-0/+3
Added support for timestamp-based migrations
2012-11-13Add seed values support for Query Builder order_byAndrey Andreev1-0/+1
(feature request #1987)
2012-11-13Fixed an issue with my mergeJonathon Hill1-1/+0
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Fixed a typoJonathon Hill1-1/+1
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Merge remote-tracking branch 'upstream/develop' into developJonathon Hill1-48/+89
Conflicts: user_guide_src/source/changelog.rst Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Fix issue #777Andrey Andreev1-1/+2
2012-11-12Bring back the AFTER clause for DB Forge add_column()Andrey Andreev1-1/+2
(it was temporarily removed due to multiple inconsistencies with other drivers) This commit also fixes issue #1988. Also added support for the FIRST clause (again, MySQL and CUBRID only).
2012-11-09Move the Log class to system/core/Andrey Andreev1-1/+2
It is a core class after all, I guess somebody forgot it when the rest of them were moved.
2012-11-09Polish the Common functions documentationAndrey Andreev1-5/+5
2012-11-09Polish docs for URL and XML helpers and deprecate obsolete options for ↵Andrey Andreev1-16/+18
String helper random_string() and URL helper url_title()
2012-11-08Deprecate String helper trim_slashes()Andrey Andreev1-7/+11
trim(, '/') is even shorter ...
2012-11-08Deprecate the Email helperAndrey Andreev1-0/+1
2012-11-07Added function_usable() to common functionsAndrey Andreev1-0/+2
It is now used to check whether dangerous functions like eval() and exec() are available. It appears that the Suhosin extension (which is becoming popular) terminates script execution instead of returning e.g. FALSE when it has a function blacklisted. function_exists() checks are insufficient and our only option is to check the ini settings here. Filed an issue here: https://github.com/stefanesser/suhosin/issues/18 ... hopefully we'll be able to deal with this in a more elegant way in the future. (this commit supersedes PR #1809)
2012-11-06Fix issue #1978Andrey Andreev1-0/+2
2012-11-06Added CI_Input::input_stream()Andrey Andreev1-0/+1
Helps in reading php://input stream data by caching it when accessed for the first time. (supersedes PR #1684)
2012-11-06Display DB object names in the Profiler and fix issue #1220Andrey Andreev1-0/+2