summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-10-30Fix issue #658 (:any wildcard matching slashes)Andrey Andreev1-1/+1
2012-10-28[ci skip] URI Library DocBlock improvementsAndrey Andreev1-84/+108
2012-10-28[ci skip] DocBlock improvements for Security libraryAndrey Andreev1-77/+100
2012-10-28Fix #1937Andrey Andreev1-1/+1
2012-10-27Merge pull request #1935 from vkeranov/developAndrey Andreev6-8/+2
Remove some extra new lines
2012-10-27[ci skip] Router class DocBlock improvementsAndrey Andreev2-103/+120
2012-10-27Update system/core/URI.phpvkeranov1-2/+1
2012-10-27Remove extra new linesvkeranov1-1/+0
2012-10-27Remove extra new linesvkeranov1-2/+1
2012-10-27Remove extra new linesvkeranov1-1/+0
2012-10-27Remove extra new linesvkeranov1-1/+0
2012-10-27Remove extra new linesvkeranov1-1/+0
2012-10-27Make CI_Loader::config() a proper alias for CI_Config::load() and improve ↵Andrey Andreev1-134/+152
the Loader class DocBlocks
2012-10-27Input class improvementsAndrey Andreev2-108/+122
- Disable register_globals replication on PHP 5.4+ (no longer exists). - DocBlock improvements. - Add missing changelog entry. - Change user_agent() to return NULL when no value is found (for consistency with other fetcher methods).
2012-10-27Docblock improvements to the Config library and remove ↵Andrey Andreev3-49/+40
CI_Config::_assign_to_config() Existance of _assign_to_config() is pointless as this method consists just of a foreach calling CI_Config::set_item() and is only called by CodeIgniter.php - moved that foreach() in there instead.
2012-10-27Docblock improvementsAndrey Andreev7-114/+108
2012-10-26Fix an improper usage of empty() in the URI classAndrey Andreev1-1/+1
2012-10-24Improve fix for #1811Andrey Andreev1-0/+1
2012-10-24Fix #1811Andrey Andreev1-6/+8
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.