Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-02-15 | Pass CI_Config as a parameter to CI_URI constructor | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | [ci skip] Merge branch '3.0-stable' into develop | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | [ci skip] Update ellislab.com links to https too | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | Merge branch '3.0-stable' into develop | Andrey Andreev | 1 | -2/+2 | |
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 1 | -2/+2 | |
2016-01-11 | Merge branch '3.0-stable' into develop | Andrey Andreev | 1 | -2/+2 | |
2016-01-11 | [ci skip] Bump year to 2016 | Andrey Andreev | 1 | -2/+2 | |
2015-11-04 | [ci skip] Start of 3.0.4 development | Andrey Andreev | 1 | -1/+1 | |
2015-10-31 | [ci skip] Update changelog, version & upgrade instructions | Andrey Andreev | 1 | -1/+1 | |
2015-10-12 | [ci skip] This is 3.0.3-dev | Andrey Andreev | 1 | -1/+1 | |
2015-10-08 | [ci skip] Prepare 3.0.2 release | Andrey Andreev | 1 | -1/+1 | |
2015-08-07 | [ci skip] Start of 3.1.0-dev | Andrey Andreev | 1 | -1/+1 | |
2015-08-07 | [ci skip] Start of 3.0.2-dev | Andrey Andreev | 1 | -1/+1 | |
2015-04-01 | [ci skip] Update version numbers | Andrey Andreev | 1 | -1/+1 | |
2015-03-31 | [ci skip] Update version number | Andrey Andreev | 1 | -1/+1 | |
2015-01-30 | Log an error message if composer_autoload is not found. | Andrey Andreev | 1 | -2/+8 | |
2015-01-30 | [ci skip] Load vendor/autoload.php earlier | Andrey Andreev | 1 | -17/+17 | |
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 1 | -3/+0 | |
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-22 | fix typo in the comments | Claudio Galdiolo | 1 | -1/+1 | |
2014-10-28 | Add a real exception handler | Andrey Andreev | 1 | -1/+2 | |
Close #1590 Close #3200 | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-10-06 | Optimize the composer_autoload check | Andrey Andreev | 1 | -1/+1 | |
2014-07-11 | Add setting ['composer_autoload'] | Andrey Andreev | 1 | -0/+17 | |
Supersedes PR #3132 | |||||
2014-07-07 | Fix a few typos and add a backport (compat) for hex2bin() | Andrey Andreev | 1 | -1/+1 | |
2014-05-09 | Suppress PHP 5.6 E_DEPRECATED warnings for mbstring.internal_encoding as well | Andrey Andreev | 1 | -1/+3 | |
2014-05-06 | Account for PHP 5.6 changes related to charsets | Andrey Andreev | 1 | -2/+10 | |
2014-04-15 | Fix in $_protected array of register_globals security procedure | vlakoff | 1 | -1/+1 | |
* Followup to b78a8c7d40446a3e2e36772706662fd033fe7d1d * Just FYI, renamed to "system_path" in 0c1e405437ceb3c1888e151e6a400653310ad6c1 | |||||
2014-04-15 | Fix #3004 | Andrey Andreev | 1 | -3/+51 | |
2014-02-24 | Don't use globals | Andrey Andreev | 1 | -3/+2 | |
- Use load_class() to get objects during bootstrap process. - Change load_class() to accept a class constructor parameter instead of previously unused class name prefix. - Change CI_Router::__construct() to accept as a parameter. | |||||
2014-02-20 | Don't use error suppression with ini_set() | Andrey Andreev | 1 | -1/+1 | |
2014-02-19 | Add compatibility layer for array_column(), array_replace(), ↵ | Andrey Andreev | 1 | -0/+1 | |
array_replace_recursive() | |||||
2014-02-18 | Add an ext/hash compatibility layer (just hash_pbkdf2(), for now) | Andrey Andreev | 1 | -0/+1 | |
2014-02-13 | Fix syntax error | Andrey Andreev | 1 | -2/+2 | |
2014-02-13 | Introducing compatibility layers | Andrey Andreev | 1 | -0/+9 | |
- Limited support for mbstring (mb_strlen(), mb_strpos(), mb_substr() only) via iconv. Falls back to regular strlen(), strpos(), substr() if iconv is not available. - Password hashing, dependant on CRYPT_BLOWFISH (2y version, available since PHP 5.3.7) availability. | |||||
2014-02-12 | Move mbstring/iconv configuration and MB_ENABLED, ICONV_ENABLED out of ↵ | Andrey Andreev | 1 | -5/+45 | |
CI_Utf8::__construct() Also, use mb_substitute_character() instead of ini_set() | |||||
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-01-16 | URI Routing overhaul | Andrey Andreev | 1 | -61/+82 | |
- Allow multiple levels of controller directories (supersedes PRs #390, #2439) - Add support for per-directory 'defaul_controller' and '404_override' (resolves issue #2611; supersedes PR #939) - Fixed a bug where default_controller was called instead of triggering 404 if the current route is inside a directory - Removed a few calls from CI_Router to CI_URI that made a necessity for otherwise internal CI_URI methods to be public: - Removed CI_URI::_fetch_uri_string() and moved its logic into CI_URI::__construct() - Removed CI_URI::_remove_url_suffix, CI_URI::_explode_segments() and moved their logic into CI_URI::_set_uri_string() - Removed CI_URI::_reindex_segments() altogether ( doesn't need further manipulation, while is public anyway and can be properly (and more effectively) replaced on the spot) | |||||
2014-01-10 | Finally get rid of the CI_Router::_set_overrides() calls | Andrey Andreev | 1 | -6/+0 | |
2013-11-17 | Always load application/config/constants.php | Andrey Andreev | 1 | -6/+4 | |
2013-11-16 | Update CodeIgniter.php | josephok | 1 | -9/+9 | |
require(APPPATH.'config/constants.php') should be in front of require(BASEPATH.'core/Common.php') because Common.php uses some constants defined in constants.php. | |||||
2013-09-13 | Improvements to safe_mode detection (it doesn't exist in PHP 5.4) | Andrey Andreev | 1 | -4/+2 | |
2013-09-11 | Simulate a complete custom exception handler by redirecting uncaught events. | Kaiwang Chen | 1 | -0/+1 | |
2013-08-17 | Fix $replace parameter handling in get_config() | vlakoff | 1 | -1/+1 | |
Code was reached only on first function call, then short-circuited because of the reference cache. | |||||
2013-07-22 | Change class filenames to Ucfirst | Andrey Andreev | 1 | -4/+8 | |
2013-07-19 | Router improvements | Andrey Andreev | 1 | -1/+0 | |
- Make dashes-to-underscores URI segment replacement configurable via ['translate_uri_dashes']. - Make _set_routing() protected and move the call to the class constructor. - Remove redudant calls to set_class() and set_method(). - Clean-up/optimize the routes loading procedure. (fixes issue #2503) | |||||
2013-04-04 | Fix #2380 and deprecate CI_Router::fetch_*() methods | Andrey Andreev | 1 | -4/+4 | |
2013-02-21 | Disable autoloader call from class_exists() occurences to improve performance | Andrey Andreev | 1 | -3/+3 | |
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that. | |||||
2013-01-28 | Remove unnecessary defined('ENVIRONMENT') checks | Andrey Andreev | 1 | -1/+1 | |
As suggested in issue #2134 & PR #2149 | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |