summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev16-16/+32
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-10-31Changed URI auto-detection to try PATH_INFO firstAndrey Andreev1-8/+6
(thanks to @sourcejedi, PR #1326) Up until PHP 5.2.4 (which is our new lowest requirement), there was a bug related to PATH_INFO which made REQUEST_URI a more reliable choice. This is now no longer the case, see https://bugs.php.net/bug.php?id=31892 for more details. Also removed ORIG_PATH_INFO from the suggested alternatives for uri_protocol in application/config/config.php as it will not exist in most of PHP's recent versions and is pointless when you can use PATH_INFO anyway.
2012-10-31Fix issue in resetting QUERY_STRING, GET vars introduced in ↵Andrey Andreev1-26/+2
f2b19fee7876708c7a7bb5cba6b7df682a9d2a53
2012-10-31Fix issues #388 & #705Andrey Andreev1-4/+5
(thanks to @sourcejedi, PR #1326 for pointing inconsistencies with RFC2616
2012-10-31Merge pull request #1636 from jdfm/developAndrey Andreev1-3/+41
Processed routes
2012-10-31Fix an erroneous variable nameAndrey Andreev1-1/+1
2012-10-31Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJonatas Miguel15-714/+836
2012-10-31Multiple improvements to the URI classAndrey Andreev1-28/+75
(thanks to @sourcejedi, PR #1326 for most of the ideas) - Renamed _detect_uri() and _parse_cli_args() to _parse_request_uri() and _parse_argv() respectively. - Added _parse_query_string() which allows us to detect the URI path from QUERY_STRING much like it is done in _parse_request_uri(). (the above changes also allow for a simpler logic in the case where the *uri_protocol* setting is not set to 'AUTO') - Updated application/config/config.php with a better list of the *uri_protocol* options. - Added _reset_query_string() to aid in re-processing from the QUERY_STRING (utilized in _parse_request_uri() and _parse_query_string()).
2012-10-31CI_URI::_detect_uri() to accept absolute URIsAndrey Andreev1-20/+20
(thanks to @sourcejedi, PR #1326) For HTTP/1.1 compliance, RFC2616 specifies that both relative and absolute URI formats must be accepted: - http://localhost/path/ (absolute) - /path/ (relative)
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-25Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJonatas Miguel4-18/+21
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-24Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJonatas Miguel10-94/+244
Conflicts: user_guide_src/source/changelog.rst
2012-10-24[ci skip] style and phpdoc-related changes (rel #1295)Andrey Andreev3-3/+6
2012-10-23users' default values are now respected in callback routesJonatas Miguel1-0/+15
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>