summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/general
AgeCommit message (Collapse)AuthorFilesLines
2017-11-20Merge branch '3.1-stable' into developAndrey Andreev4-22/+6
2017-11-20[ci skip] More docs updates following #5330Andrey Andreev4-22/+6
2017-10-09[ci skip] Merge pull request #5295 from mamat-rahmat/fix-docs-code-blockAndrey Andreev1-2/+2
Fix broken .htaccess example code-block
2017-10-09Fix broken .htaccess example code-blockMamat Rahmat1-2/+2
- remove double colon before code-block - change lexer into apacheconf Fixes #5283 Signed-off-by: Mamat Rahmat <coderbodoh@gmail.com>
2017-10-02[ci skip] Drop docs section about short PHP tags (close #5280)Andrey Andreev1-15/+1
2017-07-21[ci skip] Merge pull request #5191 from jim-parry/patch/docsAndrey Andreev1-3/+3
Fix some mistakes in the user guide
2017-07-20Added code-block tag to make sphinx happy with urls.rstMaster Yoda1-0/+2
2017-07-20Remove changes to general/urls.rstMaster Yoda1-2/+2
2017-07-20Fix some mistakes in the user guideMaster Yoda1-5/+3
2017-06-15[ci skip] Merge pull request #5154 from angelxaces/patch-1Andrey Andreev1-1/+1
Grammatical fix in ancillary_classes.rst doc
2017-06-14Create ancillary_classes.rstAngel Aces1-1/+1
"Normally, to call any of the available CodeIgniter methods requires you to use the ``$this`` construct::" - Grammatical adjustment. It appears that the author meshed two sentences together by starting with the proper noun that they ended the previous sentence but as it is the sentence reads: "Normally to call any of the available. CodeIgniter methods requires..."
2017-03-24Merge branch '3.1-stable' into developAndrey Andreev1-3/+0
Conflicts resolved: system/core/CodeIgniter.php system/core/Common.php system/core/Input.php system/helpers/cookie_helper.php tests/codeigniter/helpers/html_helper_test.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst user_guide_src/source/libraries/input.rst
2017-03-08[ci skip] Remove an obsolete note from routing docsAndrey Andreev1-3/+0
2017-01-17[ci skip] Merge pull request #4986 from ka7/feature/spellingAndrey Andreev1-1/+1
Spelling fixes in comment blocks and docs
2017-01-16spelling fixesklemens1-1/+1
2016-12-16Merge pull request #4947 from slax0rr/developAndrey Andreev2-6/+3
[ci skip] Remove needless constructor in model general topics documentation
2016-12-16Add constructor comments to match controller docsTomaz Lovrec2-0/+3
Empty constructors are pointless and bad practice, but removing them from this part of the documentation makes it less readable, makes less of a point, and would be quite frankly weird. Added a comment that suggests that further user code should be put there, like it is in the controller documentation
2016-12-16Remove needless constructor in model documentationTomaz Lovrec1-6/+0
PHP will execute the parent constructor regardless if a constructor method is defined in the child class or not. Defining an empty constructor just to call the parents constructor can be considered bad practice.
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev2-10/+1
2016-12-14[ci skip] More doc changes related to PHP 5.4.8 requirementAndrey Andreev4-8/+7
2016-10-24Merge pull request #4868 from hex-ci/patch-2Andrey Andreev1-1/+1
[ci skip] Fix a doc link
2016-10-24Fix small doc problem.Hex1-1/+1
2016-10-14Merge pull request #4840 from ihatehandles/patch-2Andrey Andreev1-3/+3
[ci skip] Fixed some typos
2016-10-12Fixed typosihatehandles1-3/+3
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev4-42/+5
2016-07-26[ci skip] More on dropping 5.2.xAndrey Andreev2-4/+4
2016-06-20[ci skip] Remove non-existent parameter from log_message() docsAndrey Andreev1-2/+1
Reported in #4671
2015-11-23[ci skip] Update routing docsAndrey Andreev1-5/+6
Close #4258
2015-10-12[ci skip] Add more info about security reporting to docsAndrey Andreev1-0/+3
2015-10-08[ci skip] Fix broken links in user guideAndrey Andreev1-1/+1
2015-09-28[ci skip] Explain per-directory logic for 404_override tooAndrey Andreev1-2/+4
2015-09-28[ci skip] Clarify docs about default_controllerAndrey Andreev2-14/+23
2015-07-20[ci skip] Fix #3985Andrey Andreev1-1/+1
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-05-13[ci skip] Fix an erroneous doc linkAndrey Andreev1-2/+2
Close #3851
2015-05-08update userguideftwbzhao1-0/+1
2015-04-30Fix typos in user guide.Master Yoda1-1/+1
Corrected "csrf_regenerate" in libraries/security.rst (it read "csrf_regeneration", incorrect per source code). Corrected "blog" as default controller in general/controllers.rst (it read "Blog", not per convention).
2015-03-31[ci skip] Update security recommendationsAndrey Andreev1-4/+8
2015-03-25Fixed user guide internal & external links to resolve problems reported by ↵Master Yoda3-7/+7
sphinx "make linkcheck" Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-21[ci skip] Remove an obsolete note about referencesAndrey Andreev1-14/+6
Close #3686
2015-02-24[ci skip] Add a note about pbkdf2 in security guideAndrey Andreev1-0/+4
2015-02-02[ci skip] Fix #3515Andrey Andreev6-42/+42
2015-02-02[ci skip] Fix indentation in erro handling docsAndrey Andreev1-54/+63
2015-01-30Incorporated suggested changes.Master Yoda1-9/+7
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-01-29Clarified the template folder for errors.Master Yoda1-3/+7
Verified that the user guide build works. Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-01-27Fixed #3516Razican1-1/+1
Signed-off-by: Razican <admin@razican.com>
2015-01-25Small fixes in documentationvlakoff1-1/+1
2015-01-22Update documentation about PHP files closingvlakoff2-27/+2
2015-01-21[ci skip] Update security guideAndrey Andreev1-9/+93
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev1-3/+1
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.