Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -3/+3 | |
- 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 | |||||
2014-12-16 | Fix #3419 | Andrey Andreev | 1 | -41/+28 | |
2014-10-28 | Close #3292 | Andrey Andreev | 1 | -1/+3 | |
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-10-10 | Fix #3270 | Andrey Andreev | 1 | -5/+2 | |
Related: #3268, 4bdb66759c24c41fefec7952b12a0595a671eaa2 | |||||
2014-10-07 | Attempt a better base_url auto-detection | Andrey Andreev | 1 | -3/+5 | |
2014-06-12 | remove the empty line at the end of file | Fu Xu | 1 | -1/+1 | |
2014-06-12 | style change | Fu Xu | 1 | -1/+1 | |
2014-06-12 | config load bug fix | Fu Xu | 1 | -2/+3 | |
2014-04-01 | Discard the unwanted changes | vlakoff | 1 | -3/+10 | |
2014-04-01 | Yet another method for determining "base_url" | vlakoff | 1 | -8/+1 | |
This one is great because we don't have to deal with the special cases: * in Windows, dirname('/foo/index.php') gives "/foo", but dirname('/index.php') gives "\" instead of "/" * dirname() doesn't include the trailing slash, with the expection of "/" (root) props @narfbg | |||||
2014-04-01 | Remove spaces around concatenations | vlakoff | 1 | -3/+3 | |
per request | |||||
2014-03-31 | Different method for determining "base_url" | vlakoff | 1 | -2/+7 | |
Better performance by not using regex. | |||||
2014-03-31 | Robuster determination of "base_url" config item | vlakoff | 1 | -1/+3 | |
Remove the basename only at the end, to avoid edge cases. | |||||
2014-03-31 | Refactoring in Config->__construct() | vlakoff | 1 | -10/+3 | |
Put the $_SERVER['HTTP_HOST'] fallback in a more logical place. | |||||
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-02-08 | Deprecate CI_Config::system_url() | Andrey Andreev | 1 | -0/+1 | |
2013-10-25 | Implement $protocol parameter in Config base_url() and site_url() methods | vlakoff | 1 | -6/+22 | |
Let's keep the implementation logic in one place. Improves 2023c3d05b042cf1322286d69557c2b8bf3bd8d5. | |||||
2013-07-25 | Uniformize slash_item() with item() | vlakoff | 1 | -2/+2 | |
2013-07-25 | Adjustments to the previous commit | vlakoff | 1 | -1/+1 | |
2013-07-24 | config->item() now returns NULL instead of FALSE when the required item ↵ | vlakoff | 1 | -3/+3 | |
doesn't exist. Uniformization with other functions. This also brings the ability to properly use booleans in configuration. | |||||
2013-01-28 | Remove unnecessary defined('ENVIRONMENT') checks | Andrey Andreev | 1 | -5/+1 | |
As suggested in issue #2134 & PR #2149 | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |
2012-12-03 | config->site_url(): remove useless cast | vlakoff | 1 | -1/+1 | |
thanks to narfbg | |||||
2012-12-03 | config->site_url() optimizations | vlakoff | 1 | -7/+10 | |
- direct access to config array, instead of item() calls - the string cast is just in case 'url_suffix' would be set to false or null; the function produces the same results without this cast, but it leads to a robuster code, as false and null are sanitized and skip the suffix insertion code - altered conditional structure: if no suffix, skip the appending of an empty string to $uri | |||||
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-27 | Input class improvements | Andrey Andreev | 1 | -1/+1 | |
- 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-27 | Docblock improvements to the Config library and remove ↵ | Andrey Andreev | 1 | -46/+34 | |
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-22 | Add is_https() as a common function | Andrey Andreev | 1 | -1/+1 | |
2012-10-05 | Fix issue #116 + other space/style fixes [ci skip | Andrey Andreev | 1 | -1/+1 | |
2012-07-04 | Fix some whitespace, removed unnecessary string concatenation. | Eric Roberts | 1 | -3/+3 | |
2012-07-04 | Moved redundant $check_locations definition out of loop. | Eric Roberts | 1 | -4/+4 | |
2012-06-16 | Fix issue #999 | Andrey Andreev | 1 | -3/+15 | |
2012-06-16 | Fix issue #938 + some related improvements | Andrey Andreev | 1 | -13/+7 | |
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 | Replaced `==` with `===` and `!=` with `!==` in /system/core | Alex Bilbie | 1 | -7/+7 | |
2012-05-17 | Cleanup the core classes | Andrey Andreev | 1 | -14/+13 | |
2012-04-27 | Fix Config.php and partially fix Image_lib.php | Timothy Warren | 1 | -7/+0 | |
2012-04-23 | Use tabs to separate class properties | Timothy Warren | 1 | -3/+3 | |
2012-04-19 | Additional formatting fixes | Timothy Warren | 1 | -1/+3 | |
2012-04-19 | Normalize comments in core files | Timothy Warren | 1 | -1/+0 | |
2012-03-14 | Merge branch 'feature/unit-tests' into develop | Phil Sturgeon | 1 | -1/+1 | |
2012-03-10 | Fix incomplete and skipped test | Taufan Aditya | 1 | -1/+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-01-31 | HTTPS detection fix | Ross Duggan | 1 | -1/+1 | |
More closely follow the wording of the $_SERVER['HTTPS'] description in the PHP manual, which specifies a "non-empty" value rather than "non-null" | |||||
2012-01-07 | Reverted DIRECTORY_SEPARATOR changes | Andrey Andreev | 1 | -3/+3 | |
2012-01-07 | Improve the Config library | Andrey Andreev | 1 | -74/+40 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-12-25 | Fixing soft tabs in a few files. | Greg Aker | 1 | -1/+1 | |