Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-11-02 | Fix #1956 | Andrey Andreev | 1 | -1/+1 | |
2012-11-01 | Fix issue #122 | Andrey Andreev | 1 | -1/+8 | |
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 1 | -1/+2 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-31 | Changed URI auto-detection to try PATH_INFO first | Andrey Andreev | 1 | -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-31 | Fix issue in resetting QUERY_STRING, GET vars introduced in ↵ | Andrey Andreev | 1 | -26/+2 | |
f2b19fee7876708c7a7bb5cba6b7df682a9d2a53 | |||||
2012-10-31 | Fix issues #388 & #705 | Andrey Andreev | 1 | -4/+5 | |
(thanks to @sourcejedi, PR #1326 for pointing inconsistencies with RFC2616 | |||||
2012-10-31 | Fix an erroneous variable name | Andrey Andreev | 1 | -1/+1 | |
2012-10-31 | Multiple improvements to the URI class | Andrey Andreev | 1 | -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-31 | CI_URI::_detect_uri() to accept absolute URIs | Andrey Andreev | 1 | -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-28 | [ci skip] URI Library DocBlock improvements | Andrey Andreev | 1 | -84/+108 | |
2012-10-27 | Update system/core/URI.php | vkeranov | 1 | -2/+1 | |
2012-10-26 | Fix an improper usage of empty() in the URI class | Andrey Andreev | 1 | -1/+1 | |
2012-10-24 | Improve fix for #1811 | Andrey Andreev | 1 | -0/+1 | |
2012-10-24 | Fix #1811 | Andrey Andreev | 1 | -6/+8 | |
2012-10-23 | Fix issue #779 | Andrey Andreev | 1 | -5/+2 | |
2012-06-16 | Fix issue #999 | Andrey Andreev | 1 | -2/+4 | |
2012-06-15 | Fix issue #167 | Andrey Andreev | 1 | -1/+1 | |
2012-06-14 | And yet another missed line from the last one | Andrey Andreev | 1 | -1/+1 | |
2012-06-14 | Fix an issue from d461934184d95b0cfb2feec93f27b621ef72a5c2 | Andrey Andreev | 1 | -3/+3 | |
2012-06-14 | Fix issue #10 + URI class speed improvements | Andrey Andreev | 1 | -8/+12 | |
2012-06-12 | Change file permissions for system/core/*.php and system/database/DB.php so ↵ | Andrey Andreev | 1 | -0/+0 | |
that they don't differ from the rest | |||||
2012-06-04 | Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d | Andrey Andreev | 1 | -1/+1 | |
2012-06-02 | Fixed bug introduced in ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d | Alex Bilbie | 1 | -1/+1 | |
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/core | Alex Bilbie | 1 | -7/+7 | |
2012-05-23 | Input, Session and Cookie get's will return NULL. | Phil Sturgeon | 1 | -9/+9 | |
Read more about this change here: http://codeigniter.com/forums/viewthread/215833 | |||||
2012-05-17 | Cleanup the core classes | Andrey Andreev | 1 | -34/+33 | |
2012-05-02 | Reverted rui_string change. | Phil Sturgeon | 1 | -2/+2 | |
This had knock-on effects as can be seen in #1306. Issue #122 has been reopend until it is fixed properly. | |||||
2012-04-26 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into patch | Timothy Warren | 1 | -1/+1 | |
2012-04-26 | Fixed issue #122 - ruri_string() in subdirs. | Phil Sturgeon | 1 | -2/+2 | |
2012-04-23 | Use tabs to separate class properties | Timothy Warren | 1 | -3/+3 | |
2012-04-19 | Additional formatting fixes | Timothy Warren | 1 | -7/+11 | |
2012-03-14 | Merged unit test progress. | Phil Sturgeon | 1 | -3/+1 | |
2012-03-14 | Merge branch 'feature/unit-tests' into develop | Phil Sturgeon | 1 | -2/+16 | |
2012-03-10 | Remove PHP 5.1.6-specific code | Andrey Andreev | 1 | -3/+1 | |
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway... | |||||
2012-03-04 | Merged develop and fixed conflicts. | Phil Sturgeon | 1 | -110/+81 | |
2012-01-08 | Fixes for issue 896 | Michiel Vugteveen | 1 | -2/+3 | |
2012-01-07 | Remove a space :) | Andrey Andreev | 1 | -1/+1 | |
2012-01-07 | Improve core URI & UTF8 libraries | Andrey Andreev | 1 | -113/+84 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-11-27 | Merge branch 'refs/heads/develop' into feature/unit-tests | Eric Barnes | 1 | -4/+16 | |
Conflicts: user_guide/helpers/number_helper.html | |||||
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -4/+16 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-08-29 | Merge branch 'develop' into feature/unit-tests | Eric Barnes | 1 | -2/+2 | |
2011-08-28 | Added tests for CI_URI class. Made modifications to core class which | Stephen | 1 | -1/+16 | |
helped with isolation for testing. | |||||
2011-08-26 | changed private functions to protected so MY_URI can override them. | Paul | 1 | -2/+2 | |
2011-08-15 | Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵ | Phil Sturgeon | 1 | -0/+31 | |
develop | |||||
2011-08-15 | Added some docs to CI core files | David Behler | 1 | -0/+31 | |
2011-08-13 | Get php_sapi_name() == 'cli' involved in the 'is this the command line?' ↵ | Phil Sturgeon | 1 | -1/+1 | |
decision. | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -7/+7 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -7/+7 | |