Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-11-05 | Revert usage of is_callable() in system/core/CodeIgniter.php | Andrey Andreev | 1 | -1/+5 | |
Seems to be causing issues (see #1970). Also updated the Controller docs, mainly to include an important note related to #1967. | |||||
2012-11-02 | Bootstrap improvements | Andrey Andreev | 1 | -39/+33 | |
- Don't instantiate the CI singleton twice. - General clean-up. - Fix issue #953. | |||||
2012-11-02 | Fix a directory/404_override bug and some routing-related optimizations | Andrey Andreev | 1 | -6/+10 | |
2012-11-02 | Router-related optimizations | Andrey Andreev | 1 | -9/+4 | |
An improved version of changes suggesed in PR #1352, and more specifically: https://github.com/sourcejedi/CodeIgniter/commit/8f7d2dfe42bd8543981c0f295e391e433d82fd42 https://github.com/sourcejedi/CodeIgniter/commit/d2de251c092d9d822fc4898e3681b64e9c74dd2a (thanks again @sourcejedi) | |||||
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 | Remove extra new lines | vkeranov | 1 | -1/+0 | |
2012-10-27 | Docblock improvements to the Config library and remove ↵ | Andrey Andreev | 1 | -2/+5 | |
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-11 | Replace a few require() uses with require_once() (should fix issue #1872) | Andrey Andreev | 1 | -1/+1 | |
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-05 | Replace set_magic_quotes_runtime() with an ini_set() call | Andrey Andreev | 1 | -1/+1 | |
2012-06-05 | Fix a magic_quotes-related bug and changed the default parameter value for ↵ | Andrey Andreev | 1 | -1/+1 | |
is_php() | |||||
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 | -2/+2 | |
2012-05-23 | Merge pull request #1367 from PawelDecowski/develop | Phil Sturgeon | 1 | -11/+0 | |
Remove set_time_limit() call. Fixes #1346 | |||||
2012-05-22 | Move closing of database connection to CI_DB_driver->__destruct - #1376 | Root | 1 | -10/+0 | |
2012-05-17 | Remove set_time_limit() call. CodeIgniter should respect php.ini setting. | Pawel Decowski | 1 | -11/+0 | |
2012-05-17 | Cleanup the core classes | Andrey Andreev | 1 | -1/+1 | |
2012-04-28 | Important spelling fix to CodeIgniter.php file | Chris Berthe | 1 | -1/+1 | |
2012-04-23 | Use tabs to separate class properties | Timothy Warren | 1 | -1/+1 | |
2012-04-23 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into patch | Timothy Warren | 1 | -7/+7 | |
2012-04-23 | Merge upstream | Timothy Warren | 1 | -3/+1 | |
2012-04-23 | Fix issue #1265 | Andrey Andreev | 1 | -8/+8 | |
2012-04-19 | Normalize comments in core files | Timothy Warren | 1 | -0/+7 | |
2012-03-26 | Make _initialize() a constructor and rename _call_hook() to call_hook in the ↵ | Andrey Andreev | 1 | -7/+7 | |
Hooks class | |||||
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-10 | Fix a bug in system/core/CodeIgniter.php | Andrey Andreev | 1 | -1/+1 | |
2012-01-08 | Replace AND with && | Andrey Andreev | 1 | -6/+6 | |
2012-01-07 | Improve core/CodeIgniter.php | Andrey Andreev | 1 | -23/+15 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-12-27 | Revert "Abstracting the loading of files in the config directory depending ↵ | Greg Aker | 1 | -1/+8 | |
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a. | |||||
2011-12-25 | Abstracting the loading of files in the config directory depending on ↵ | Greg Aker | 1 | -8/+1 | |
environments. | |||||
2011-12-01 | Removed `$_SERVER['REMOTE_ADDR']` following feedback | Jack Webb-Heller | 1 | -1/+1 | |
2011-12-01 | CodeIgniter ignores the set config value for Maximum Execution Time, ↵ | Jack Webb-Heller | 1 | -2/+6 | |
overwriting it with its own value of 300 seconds. Whilst this is sensible in the vast majority of situations (browsers), when running a script from CLI, it is likely that execution times may need to be longer. Therefore, don't override the time limit if being run from the CLI - instead default back to PHP's own configuration. | |||||
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -5/+17 | |
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-09-30 | cleanup docblocks, remove dated CI_CORE constant | freewil | 1 | -20/+0 | |
2011-08-26 | Changed CI_VERSION to represent develop branch | Eric Barnes | 1 | -1/+1 | |
2011-08-15 | Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵ | Phil Sturgeon | 1 | -0/+12 | |
develop | |||||
2011-08-14 | Added some docs to CI core files | David Behler | 1 | -0/+12 | |
2011-08-14 | Fixed conflict. | Phil Sturgeon | 1 | -9/+11 | |
2011-08-14 | Added some docs to CI core files | root | 1 | -0/+13 | |
2011-08-13 | Got changelog in sync with changes after v2.0.3 release branch merged a ↵ | Phil Sturgeon | 1 | -1/+1 | |
bunch of stuff. Anyone moving a develop change into v2.0.3 should move the changelog item too. | |||||
2011-08-13 | Bumped the version number. Can somebody with a working find and replace fix ↵ | Phil Sturgeon | 1 | -1/+1 | |
up the docs? | |||||
2011-08-10 | 404_override route now works for missing controllers in subdirectories and ↵ | Shane Pearson | 1 | -1/+19 | |
functions that fail the security check in CodeIgniter.php | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -34/+34 | |
broke the Typography class's string replacements, for instance | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -34/+34 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -34/+34 | |
2011-04-19 | Removing internal references to the EXT constant. Additionally, marked the ↵ | Greg Aker | 1 | -11/+11 | |
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3. | |||||
2011-04-08 | Fix: #192 CI version constant incorrect in core/CodeIgniter | Greg Aker | 1 | -1/+1 | |
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 1 | -0/+7 | |
stop environment checks. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 1 | -1/+1 | |
stop environment checks. |