summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-07-02Merge pull request #3940 from ftwbzhao/developAndrey Andreev1-0/+1
SQLite < 3.3 doesn't support DROP TABLE IF
2015-07-02sqlite < 3.3 unsuported `_drop_table_if`ftwbzhao1-0/+1
2015-06-29[ci skip] Manually apply PR #3925Andrey Andreev1-2/+2
2015-06-29Close #3934Andrey Andreev1-1/+1
2015-06-29Fix regression caused by 59d1ffd927ef3b63dbadf42e1caf14957201fd2dAndrey Andreev1-1/+1
2015-06-29Merge pull request #3930 from rochefort/fix-is_robotAndrey Andreev1-1/+1
[ci skip] Fix Ask Jeeves user-agent string
2015-06-29Fix #3932Andrey Andreev2-1/+2
2015-06-26Fix ask jeeves user-agentrochefort1-1/+1
2015-06-23[ci skip] Remove an assign-by-ref example from DButil docsAndrey Andreev1-2/+2
Triggers an E_DEPRECATED message; reported via the forums: http://forum.codeigniter.com/thread-62178-post-319791.html
2015-06-23Merge pull request #3926 from oakforge/developAndrey Andreev1-1/+1
[ci skip] Typo fix in dbforge documentation
2015-06-23Typo fix on forge documentationgn1-1/+1
2015-06-23Merge pull request #3924 from EdersonTS/patch-1Andrey Andreev1-1/+2
[ci skip] Add .ico mime type
2015-06-22Added .ico mime typeÉderson1-1/+2
Just added ico to mime list
2015-06-22[ci skip] Add remaining changes from PR #3826Andrey Andreev2-2/+2
2015-06-22A small optimization in CI_Cache::is_supported()Andrey Andreev1-3/+2
As it was, the static variable was always re-set to an empty array
2015-06-22Fix #3913Andrey Andreev3-139/+130
2015-06-22Work-around for https://bugs.php.net/bug.php?id=39598Andrey Andreev3-2/+43
Fixes #3922
2015-06-22Alter CI_Upload logging levelsAndrey Andreev2-24/+32
Close #3920
2015-06-19Merge pull request #3918 from SterlingVix/patch-2Andrey Andreev1-2/+2
[ci skip] Remove superfluous *Best Practices* parenthetical
2015-06-18Fixed a cleanup miss in the default database config file to follow the ↵Tim Nolte1-6/+1
recent SSL feature changes. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-18Removed db_options configuration item for implementation later. Changed 5 ↵Tim Nolte3-96/+22
new MySQLi SSL configuration options to a single ssl_options config item that is an array that will be read to set the individual SSL options. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-18Merge branch 'develop' into feature/mysqli-sslTim Nolte3-4/+11
2015-06-18Remove superfluous *Best Practices* parentheticalAaron Melocik1-2/+2
In the documentation at user_guide/general/security.html#best-practices, the 3-item list has a superfluous parenthetical that is also misplaced. This parenthetical currently is at the end of the first list item, though it refers to a step that can replace the first item. As per narfbg's request in PR https://github.com/bcit-ci/CodeIgniter/pull/3915, this change removes the parenthetical entirely. The change is: BEFORE: #. Validate the data to ensure it conforms to the correct type, length, size, etc. (sometimes this step can replace step one) #. Filter the data as if it were tainted. #. Escape the data before submitting it into your database or outputting it to a browser. AFTER: #. Validate the data to ensure it conforms to the correct type, length, size, etc. #. Filter the data as if it were tainted. #. Escape the data before submitting it into your database or outputting it to a browser.
2015-06-17removed unnecessary change to form_radio, updated docs and added changelog entryAdam Jackett3-16/+20
2015-06-15Fix #3908Andrey Andreev1-1/+1
2015-06-13Merge pull request #3909 from MichaelFoss/patch-1Andrey Andreev1-1/+1
[ci skip] Fix a typo in url_title() docblock
2015-06-13Fix typo in url_title function description.Michael Foss1-1/+1
2015-06-11Fix #3904Andrey Andreev2-0/+7
2015-06-10Fix #3903Andrey Andreev2-3/+3
2015-06-08Merge branch 'develop' into feature/mysqli-sslTim Nolte42-180/+260
2015-06-08Added new MySQLi parameters/info to default database config file. Fixed ↵Tim Nolte2-2/+38
missing new MySQLi parameters from database configuration documentation examples. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-08Fixed missing MySQLi driver parameter DOCBLOCK descriptions. Updated ↵Tim Nolte2-1/+18
database configuration documentation to include a list of the new MySQLi driver parameters. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-08Fix #3890Andrey Andreev2-5/+14
2015-06-05Updated the MySQLi driver to provide support for SSL connections as well as ↵Tim Nolte1-2/+90
additional database connection options. Uses the DB_driver class encrypt option as the flag for turning on encryption. Also added SSL connection validation with error logging in order to provide users a way to know if they are actually connecting via SSL. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
2015-06-03made all form helpers consistent regarding extra attributesAdam Jackett2-21/+56
2015-05-29[ci skip] Add a note to 3.0.0 upgrade instructionsAndrey Andreev1-3/+7
2015-05-27[ci skip] Remove 'global_xss_filtering' from CI_Security docsAndrey Andreev1-6/+0
2015-05-27[ci skip] Default 'db_debug' value to depend on ENVIRONMENT settingAndrey Andreev1-1/+1
Related: #3884
2015-05-26[ci skip] Improve 3.0 upgrade instructions renderingAndrey Andreev1-4/+4
Close #3876
2015-05-22Merge pull request #3868 from ftwbzhao/feature/migrationAndrey Andreev2-4/+4
[ci skip] Update Migration lib class reference docs
2015-05-21update function latestftwbzhao2-2/+2
2015-05-21[ci skip] Update tutorialAndrey Andreev2-52/+55
Related: #3866
2015-05-21Fix a bug in the CSV export DB utilityAndrey Andreev2-2/+3
Reported via the forums: http://forum.codeigniter.com/thread-61810.html
2015-05-21[ci skip] Trim some whitespace from Image_libAndrey Andreev1-11/+11
2015-05-20optimize migrations class referenceftwbzhao2-4/+4
2015-05-19Merge pull request #3865 from naghajani/developAndrey Andreev1-5/+5
[ci skip] Doc grammar fixes
2015-05-18Fixed some grammar.NAghajani1-5/+5
Fixed some grammar mistakes in image_lib.rst
2015-05-18[ci skip] Remove example usage of MD5 for passwordsAndrey Andreev1-3/+3
2015-05-18Merge pull request #3863 from tiagowbpr/developAndrey Andreev1-2/+2
[ci skip] Fix a doc example
2015-05-17param missing.Ticema1-2/+2
add param to do_upload() function.