summaryrefslogtreecommitdiffstats
path: root/user_guide_src
AgeCommit message (Collapse)AuthorFilesLines
2013-02-15Fix some stuff from recent pull requestsAndrey Andreev1-3/+3
2013-02-15Merge pull request #2243 from chrispassas/developAndrey Andreev1-0/+1
Update system/core/Log.php
2013-02-15Various cosmetic fixesvlakoff4-6/+6
2013-02-13changes according to narfbg's requestTim1-1/+3
2013-02-13Added support for changing the default log file extension from .php to ↵Chris Passas1-0/+1
whatever is preferred. example (.log) This is a follow up to this pull request. https://github.com/EllisLab/CodeIgniter/pull/2243
2013-02-04Add entry in user guide changelog.Sajan Parikh1-0/+1
Signed-off-by: Sajan Parikh <sajan@noppix.com>
2013-02-04Cleaned up for pull request.Sajan Parikh1-2/+2
Signed-off-by: Sajan Parikh <sajan@noppix.com>
2013-02-02Fixed documentation.Sajan Parikh1-2/+4
Signed-off-by: Sajan Parikh <sajan@noppix.com>
2013-01-30Fix/improve #2211Andrey Andreev1-0/+1
2013-01-29fixed #2207 user guide errorBo-Yi Wu1-2/+2
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2013-01-29Replace CI_Upload::clean_file_name() usage with CI_Security::sanitize_filename()Andrey Andreev1-0/+2
Also applied @xeptor's fix (a big thanks) to the sanitize_filename() method and added a changelog entry for it - fixes issue #73.
2013-01-29[ci skip] Add some changelog entriesAndrey Andreev1-3/+9
2013-01-28Merge pull request #2203 from vlakoff/developAndrey Andreev1-2/+2
Adjustments in routing documentation
2013-01-28Adjustments in routing documentationvlakoff1-2/+2
* fixed syntax error for "note" banner * more useful example, in previous one there was no need for strtolower, nor for a callback
2013-01-28Fix issue #2202 and alter Loader Class docsAndrey Andreev1-74/+72
2013-01-28Libraries' filenames must be named in a ucfirst-like mannerAndrey Andreev1-5/+29
2013-01-24Move db_select() call from CI_DB_driver::initialize() to db_connect()Andrey Andreev2-1/+2
so that it's only called by drivers that need it ('mysql', 'mssql'). As proposed in issue #2187.
2013-01-23Removed slash from URI helper docMelvin Lammerts1-2/+2
In my current projects I don't see '/controller/method' but 'controller/method' when calling uri_string().
2013-01-21Partially implement PR #2155Andrey Andreev1-0/+1
2013-01-15[ci skip] Fix issue #2157 - docs on the email libraryAndrey Andreev1-23/+29
2013-01-12Implement autoload model aliasing (#2117)Andrey Andreev2-1/+2
2013-01-10Fix SQLSRV escape_str()Andrey Andreev1-0/+1
2013-01-09Syntax fixes in documentation sourcevlakoff7-51/+51
2013-01-03Merge pull request #2075 from sourcejedi/patch-1Andrey Andreev1-5/+5
doc: xss_clean() method is in Security, not Input
2013-01-03doc: fix table markup in previous commitAlan Jenkins1-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 yearAndrey Andreev4-7/+7
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 Podner2-15/+16
change log Signed-off-by:Andrew Podner <a.podner@me.com>
2012-12-19Resolves issue #2081 : provides an option to include statements to disable ↵Andrew Podner1-13/+14
and re-enable foreign key checks in a MySQL database backup output statement.
2012-12-17Fix 2073Andrey Andreev1-3/+3
2012-12-16doc: xss_clean() method is in Security, not InputAlan Jenkins1-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-14Fix issue #539Andrey Andreev3-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-13Remove slash!Eric Roberts1-1/+1
Signed-off-by: Eric Roberts <eric@cryode.com>
2012-12-12Format tweaksEric Roberts1-2/+2
Signed-off-by: Eric Roberts <eric@cryode.com>
2012-12-12Merge branch 'refs/heads/develop' into feature/form_error_msgsEric Roberts110-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-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 Andreev2-12/+39
(as requested in #2050)
2012-12-03Add min_width and min_height options to the Upload classAndrey Andreev2-47/+56
(manually implementing outdated PR #636)
2012-12-03Improve schema support for PostgreAndrey Andreev1-0/+1
2012-12-03[ci skip] Cleaned some spacesAndrey Andreev1-2/+2
2012-11-30Add CI_Output::delete_cache()Andrey Andreev2-4/+12
(an improved version of PR #609)
2012-11-29Fix #2041Andrey Andreev1-18/+19
2012-11-29Added CI_Output::get_header()Andrey Andreev2-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-26Language helper lang() to accept optional HTML attributesAndrey Andreev2-6/+7
(an improved version of PR #1235)
2012-11-26Implement cascade-style loading of language filesAndrey Andreev2-25/+22
(as requested in issue #452)
2012-11-26Add 'valid_url' rule to Form Validation (issue #1966)Andrey Andreev2-2/+4
2012-11-26CI_Email::print_debugger() option to limit the type of data to be printedAndrey Andreev2-1/+12
(an alternative to PR #1759; partially solves issue #1742)