summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2015-03-31[ci skip] Fix a wrong docblock linkAndrey Andreev1-1/+1
2015-03-31Merge branch 'develop' of github.com:bcit-ci/CodeIgniter into developAndrey Andreev1-1/+1
2015-03-31[ci skip] Update version numberAndrey Andreev1-1/+1
2015-03-30Fix whitespace in previous commitmwhitneysdsu1-1/+1
2015-03-30Fix logged path to match checked path in loadermwhitneysdsu1-1/+1
This is to fix a logged path missed in 8f5c1780706113c926bb7801db27dbae97d00fcf
2015-03-30Use tabs instead of spacesCyrille TOULET1-11/+11
Signed-off-by: Cyrille TOULET <cyrille.toulet@linux.com>
2015-03-29Fix an "strpos(): Empty needle" warningCyrille TOULET1-8/+11
Signed-off-by: Cyrille TOULET <cyrille.toulet@linux.com>
2015-03-27Fix an "strpos(): Empty needle" warningCyrille TOULET1-2/+2
Signed-off-by: Cyrille TOULET <cyrille.toulet@linux.com>
2015-03-26Minor fixes in CI_Security::entity_decode()Andrey Andreev1-4/+4
2015-03-26Add FSCommand and seekSegmentTime to evil HTML attributes listAndrey Andreev1-1/+1
2015-03-25Merge pull request #3696 from logsdon/developAndrey Andreev1-0/+5
Allow html_escape() to accept empty arrays
2015-03-25Remove commentJoshua Logsdon1-1/+0
Signed-off-by: Joshua Logsdon <logsdon.joshua@gmail.com>
2015-03-25Return empty $var immediatelyJoshua Logsdon1-6/+6
Signed-off-by: Joshua Logsdon <logsdon.joshua@gmail.com>
2015-03-25Fix #3694: Packages not overriding stock librariesAndrey Andreev1-17/+30
Related: #3692
2015-03-24array_fill() throws an error if count($var) is 0Joshua Logsdon1-0/+6
Signed-off-by: Joshua Logsdon <logsdon.joshua@gmail.com>
2015-03-18Updated CI_Input unit test and fixed error "undefined offset" caused by ↵Heesung Ahn1-2/+2
using the same variable name, $i, twice for for loop inside for loop. Signed-off-by:Heesung Ahn <ahn.heesung@gmail.com>
2015-03-15[ci skip] Use DIRECTORY_SEPARATOR instead of / in CI_ConfigAndrey Andreev1-1/+1
2015-03-12Correct a comment link typobjjay1-1/+1
2015-03-05Fix #3642Andrey Andreev1-7/+5
2015-03-03Remove an unused var in CI_LogAndrey Andreev1-8/+1
Was suggested as part of PR #3630, which was rejected due to numerous other changes
2015-02-27Make CI_Input:: read-only as wellAndrey Andreev1-1/+5
2015-02-27Fix #3633Andrey Andreev1-0/+1
2015-02-27Eh ... really fix that notice (#3604)Andrey Andreev1-0/+2
2015-02-27Fix an E_NOTICE caused by #3604Andrey Andreev1-13/+30
2015-02-26Merge pull request #3604 from Ignasimg/patch-1Andrey Andreev1-1/+15
Add support for raw_input_stream
2015-02-26Update Input.phpIgnasimg1-3/+3
2015-02-26funny tabs & spaces added and removed.Ignasimg1-18/+20
2015-02-22Common.php: set_status_header: ImproveFieah1-46/+45
1. Verify $code before define $stati 2. Only convert $code to int and define $stati when needed, possibly can save some memory.
2015-02-20Added support for raw_input_stream property.Ignasimg1-53/+28
2015-02-19Make set_status_header() a dummy under CLIAndrey Andreev1-0/+5
Close #3605
2015-02-19documentation changesIgnasimg1-8/+8
2015-02-18Fix #3593Andrey Andreev1-28/+25
Revert "fixes" for #167, #388, #705 (also #1326) as it turns out URL-decoding isn't compliant with the CGI/1.1 specification. RFC 3875: http://www.faqs.org/rfcs/rfc3875.html
2015-02-17Fix #3572: CI_Security::_remove_evil_attributes()Andrey Andreev1-21/+6
2015-02-15add <!DOCTYPE html>Tjoosten2-2/+4
2015-02-09Fix #3579Andrey Andreev1-2/+2
2015-02-06a tiny changeİrfan Evrens1-1/+1
2015-02-06Update Input.phpIgnasimg1-9/+46
Added support for json input stream. (Not tested)
2015-02-04Removed one more return value (CI_Loader::_ci_autoloader)Gabriel Potkány1-1/+1
2015-02-04Fixed inconsistent return typesGabriel Potkány1-1/+1
2015-02-03Documentation Fixnatepizzle1-1/+1
Signed-off-by: natepizzle <natepizzle@users.noreply.github.com>
2015-01-31Reduce once server protocol checkbjjay1-3/+2
2015-01-30Log an error message if composer_autoload is not found.Andrey Andreev1-2/+8
2015-01-30[ci skip] Load vendor/autoload.php earlierAndrey Andreev1-17/+17
2015-01-29fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-27is_php() more accurate descriptionkakysha1-1/+1
2015-01-22Um ... I meant autoload.phpAndrey Andreev1-1/+1
#3497
2015-01-22Don't try to include config/autoload.php if it doesn't existAndrey Andreev1-1/+5
Related: #3497
2015-01-21Remove closing blocks at end of PHP filesvlakoff21-63/+0
2015-01-21Make libraries matching controller names loadableAndrey Andreev1-71/+103
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev12-23/+24
'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.