summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
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.
2015-01-20Merge pull request #3427 from gadelat/logdateAndrey Andreev1-1/+14
Support for microseconds in CI_Log
2015-01-13Handle false-positive string values for display_errorsAndrey Andreev1-2/+2
2015-01-11Fix #3464Andrey Andreev1-1/+1
2015-01-09Bulk (mostly documentation) updateAndrey Andreev21-63/+63
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2015-01-09Fix E_WARNING in CI_Security::entity_decode() on PHP<5.3.4Andrey Andreev1-1/+6
Related: #3057 Previous commit: 487d1ae060e6414e0a59c9752a4914fa3b8c4710
2015-01-04Change order of hooks loadingvlakoff1-4/+4
Let override hooks via environment-specific config.
2015-01-03Fix #3453Andrey Andreev1-1/+1
Allow hyphens and underscores in language idioms.
2014-12-22fix typo in the commentsClaudio Galdiolo1-1/+1
2014-12-20Make µs support conditional and fix styleGabriel Potkány1-5/+13
2014-12-19Support for microsecondsGabriel Potkány1-1/+6
2014-12-17Extend fix for #3419Andrey Andreev1-17/+21
2014-12-16Fix #3419Andrey Andreev1-41/+28
2014-12-16Remove trailing newlineJason Taylor1-1/+1
2014-12-16Fix Issue #3417warpcode1-2/+2
2014-12-15Remove output minifierAndrey Andreev1-208/+0
This feature has proven to be problematic and it's not nearly as flexible as a dedicated minifier library like Minify (http://www.minifier.org/, https://github.com/matthiasmullie/minify). The same results in terms of saving traffic can also be achievied via gzip compression (which should also be done on the httpd level, but we also support anyway) and stuff like mod_pagespeed. Reverts PR #965 Related issues as a track record proving how problematic this has been: #2078 #1499 #2163 #2092 #2387 #2637 #2710 #2120 #2171 #2631 #2326 #2795 #2791 #2772 Additionally, the count of contributors suggesting that the only way to fix the minifier problems is to remove it, is around the same as the count of people suggesting the feature to be implemented in the first place. It was experimental anyway ... the experiment failed.
2014-12-08Fix 'Array to string conversion' notice in CSRF validationAndrey Andreev1-2/+2
Rel: #3398