summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-10-24Fix #191Andrey Andreev1-4/+4
2012-10-24[ci skip] Document get_csrf_token_name(), get_csrf_hash() (issue #715)Andrey Andreev1-1/+1
2012-10-24Fix #1268 (or rather enforce some security measures, there's nothing really ↵Andrey Andreev1-7/+7
broken)
2012-10-24[ci skip] style and phpdoc-related changes (rel #1295)Andrey Andreev3-3/+6
2012-10-23Fix issue #779Andrey Andreev1-5/+2
2012-10-22Add is_https() as a common functionAndrey Andreev3-2/+20
2012-10-13Fix CI_Input::ip_address() subnet detectionAndrey Andreev1-20/+28
2012-10-11Replace a few require() uses with require_once() (should fix issue #1872)Andrey Andreev2-3/+3
2012-10-10Changelog entry for previous commit and change default charset for the Email ↵Andrey Andreev1-1/+1
library to whatever the config array says
2012-10-10mbstring related changesAndrey Andreev1-18/+19
2012-10-09Remove an unnecessary variable initializationAndrey Andreev1-1/+1
2012-10-09Merge changes from developAndrey Andreev1-13/+3
2012-10-09Merge changes from 2.1-stableAndrey Andreev1-49/+48
2012-10-06Add IPv6 and array() support for *proxy_ips* configurationAndrey Andreev1-42/+99
2012-10-05Merge pull request #1682 from dhinus/patch-1Andrey Andreev1-7/+6
Logging should obey error_reporting() setting
2012-10-05Fix issue #116 + other space/style fixes [ci skipAndrey Andreev2-2/+2
2012-10-04Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developDaniel Morris1-8/+12
2012-10-04Compatibility with PHP 5.2.4 and enclosed ternary operationDaniel Morris1-1/+1
Signed-off-by: Daniel Morris <daniel@honestempire.com>
2012-10-04Default to HTTP/1.1 if $server_protocol is not setDaniel Morris1-1/+1
Signed-off-by: Daniel Morris <daniel@honestempire.com>
2012-10-04DRY determining server protocolDaniel Morris1-5/+1
Signed-off-by: Daniel Morris <daniel@honestempire.com>
2012-10-04Misc. style fixes [ci skip]Andrey Andreev1-8/+12
2012-09-20Fixes issue #1815 - input::ip_address() returns incorrect IP behind proxyAdam McCann1-1/+1
2012-09-16Better method for getting Output cache file embedded timestampvlakoff1-2/+2
Faster, shorter code
2012-09-16Minor change in Output cache file checkvlakoff1-1/+1
Won't change anything in practice, but robuster (and faster) if ever a cache file would be invalid
2012-09-02Merge pull request #1727 from pickupman/bugfix-loader-view_fileAlex Bilbie1-3/+3
Fix bug #1000
2012-08-28Fixed multi-driver load return and last-ditch library subdirectory retry ↵dchill421-3/+3
object names
2012-08-27Fixed select_driver(), cookie sess_destroy(), and native cookie name conflictdchill421-1/+7
2012-08-18Fix bug #1000Joe McFrederick1-3/+3
2012-08-08Relocated driver base class inclusion so drivers can be loaded with library()dchill421-13/+13
2012-08-04fixed whitespaceFrancesco Negri1-7/+7
2012-08-04Logging should obey error_reporting() settingFrancesco Negri1-10/+9
If the php error level is not included in the current error_reporting() setting, we should not log it. Also, the log_threshold check is redundant, it's already taken care of by the write_log() method.
2012-07-31Merge branch 'develop' of github.com:/EllisLab/CodeIgniter into sessiondchill423-4/+66
2012-07-30Some clean-up and style changesAndrey Andreev1-9/+9
2012-07-29refactored (crunched down) _stringify_attributesChad Furman1-1/+40
2012-07-28Merge pull request #1640 from thecrypticace/developAlex Bilbie1-1/+24
Added support for IP Address Range Masks to the Proxy IPs config option
2012-07-23output->_display_cache() simplificationsvlakoff1-2/+2
remove an unneeded regex capturing group and an unneeded trim()
2012-07-23Merge branch develop of github.com:/EllisLab/CodeIgniter into sessiondchill4216-1687/+1833
2012-07-23output->_display_cache() optimizationvlakoff1-1/+1
faster method to remove the timestamp from the content to be served
2012-07-23Update system/core/Input.phpJordan Pittman1-11/+17
2012-07-21Added support for IP Address Range Masks (e.g. 192.168.137.0/24) to the ↵Jordan Pittman1-2/+19
Proxy IPs config option
2012-07-16Inconsistency between log_message and show_error when encountering a ↵jonnu1-1/+1
non-existant class Signed-off-by: jonnu <jontce@gmail.com>
2012-07-13Loader::model() - rename foreach ($model AS $single_model) to ($model AS ↵Joel Limberg1-2/+2
$class). Consistent with ::library() and ::_ci_load_class()
2012-07-13Rename $babe => $single_model, in foreach ($model AS $babe) {...}joellimberg1-2/+2
2012-07-11Fix a typo in Common.phpvlakoff1-1/+1
2012-07-10Merge pull request #1548 from chrisguiney/error_reportingAndrey Andreev1-1/+2
Respect display_errors when deciding if to display an error...
2012-07-04updated the changelog, fixed some whitespaceChristopher Guiney1-1/+1
2012-07-04Fix some whitespace, removed unnecessary string concatenation.Eric Roberts1-3/+3
2012-07-04Moved redundant $check_locations definition out of loop.Eric Roberts1-4/+4
2012-07-03Fix an error in Loader code documentationvlakoff1-1/+1
That's not $this->load_vars(), but $this->load->vars()
2012-07-02Clean up regexes in Security->xss_clean()vlakoff1-7/+7
Removed some unneeded capturing groups (or made them non-capturing) and some unneeded escape characters