Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-07-24 | Cache Driver - Backup Never Loaded | Tyler Brownell | 1 | -1/+2 | |
The condition that checks to see if the backup driver input is valid was prefixing the input with "cache_". Since the valid driver values don't have this prefix, the condition was always returning FALSE and the backup drivers were never being loaded. I've removed the prefix in the condition and added a debug log message for when the backup driver is used. | |||||
2013-07-23 | Loader changes & optimizations related to issue #2551 | Andrey Andreev | 2 | -33/+32 | |
2013-07-22 | Give Drivers a higher priority in the autoloader | Andrey Andreev | 1 | -9/+9 | |
2013-07-22 | Change class filenames to Ucfirst | Andrey Andreev | 3 | -25/+26 | |
2013-07-21 | change empty function to Identical comparison operator | Hashem Qolami | 1 | -2/+2 | |
Signed-off-by: Hashem Qolami <hashem@qolami.com> | |||||
2013-07-21 | Fix Form Validation issue with text inputs which have array as name | Hashem Qolami | 1 | -2/+2 | |
Signed-off-by: Hashem Qolami <hashem@qolami.com> | |||||
2013-07-20 | Cache result of is_referral() | vlakoff | 1 | -6/+15 | |
2013-07-20 | User_agent library: robuster detection in is_referral() | vlakoff | 1 | -2/+4 | |
2013-07-19 | Router improvements | Andrey Andreev | 2 | -19/+38 | |
- 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-07-19 | Merge pull request #2538 from vlakoff/develop-4 | Andrey Andreev | 1 | -10/+5 | |
Fix config_item() returning stale values | |||||
2013-07-19 | [ci skip] Simplify get_file_info() | Andrey Andreev | 1 | -1/+1 | |
2013-07-19 | Fix config_item() returning stale values | vlakoff | 1 | -10/+5 | |
Use case fixed: config_item('foobar'); // returns "some value" $CI->config->set_item('foobar', 'new value'); config_item('foobar'); // still returns "some value", expected "new value" | |||||
2013-07-18 | More verbose error messages for incorrect/missing database groups (based on ↵ | Andrey Andreev | 1 | -2/+6 | |
PR #2040) | |||||
2013-07-18 | Fix a Memcache(d) default configuration bug (based on #249) | Andrey Andreev | 1 | -18/+8 | |
2013-07-18 | Add color customization to the CAPTCHA helper | Andrey Andreev | 1 | -17/+37 | |
Ref: Issue #867 & PRs #1405, #2485 | |||||
2013-07-18 | Micro-optimization on base_url() & site_url() | Andrey Andreev | 1 | -6/+6 | |
2013-07-18 | Add that parameter for real :) | Andrey Andreev | 1 | -1/+1 | |
2013-07-18 | Add an optional parameter to URL helpers base_url() and site_url() ↵ | Andrey Andreev | 1 | -7/+21 | |
(supersedes #2535) | |||||
2013-07-17 | Fix #2490 (an improved version of PR #2534) | Andrey Andreev | 2 | -0/+26 | |
2013-07-17 | [ci skip] Remove some empty lines | Andrey Andreev | 7 | -7/+7 | |
2013-07-17 | Merge pull request #2447 from rlerdorf/develop | Andrey Andreev | 7 | -17/+17 | |
A few minor fixes and cleanups | |||||
2013-07-17 | Cherry-picking some changes from PR #2425: | Andrey Andreev | 4 | -8/+16 | |
- Session events logging (debug) - Bug fix for OCI8 method stored_procedure() | |||||
2013-07-17 | [ci skip] Just removing some empty lines | Andrey Andreev | 2 | -2/+2 | |
2013-07-17 | Merge pull request #2452 from thallisphp/patch-3 | Andrey Andreev | 1 | -2/+2 | |
Removed unused variable $name in Cache_memcached.php | |||||
2013-07-17 | Merge pull request #2411 from Dumk0/patch-1 | Andrey Andreev | 1 | -3/+3 | |
fix typos in Parser.php | |||||
2013-07-17 | Merge pull request #2417 from thefuzzy0ne/fix/upload_dry | Andrey Andreev | 1 | -9/+5 | |
Fix/upload dry | |||||
2013-07-17 | Add changelog entry for PR #2502 | Andrey Andreev | 1 | -1/+1 | |
2013-07-17 | Merge pull request #2502 from enapupe/patch-1 | Andrey Andreev | 1 | -2/+2 | |
Update Profiler.php to show HTTP_DNT status | |||||
2013-07-16 | 2.1.4 release related stuff | Andrey Andreev | 1 | -1/+1 | |
2013-07-01 | Issue #2508 | Andrey Andreev | 1 | -2/+2 | |
2013-06-28 | Merge pull request #2497 from yazuu/upload | Andrey Andreev | 1 | -1/+16 | |
Upload : change the file extension to lower case | |||||
2013-06-28 | Fix #2498 | Andrey Andreev | 1 | -1/+1 | |
2013-06-27 | Update Profiler.php to show HTTP_DNT status | Iacami | 1 | -2/+2 | |
show do not track header status | |||||
2013-06-25 | New var name to make it more comprehensive | Adrian | 1 | -7/+10 | |
Changes to follow the styleguide, proposed by narfbg (thanks to him) | |||||
2013-06-25 | Merge pull request #2480 from florisluiten/develop | Andrey Andreev | 1 | -1/+1 | |
Prevent email header injection | |||||
2013-06-24 | Removed empty line at EOF | Floris Luiten (lenwweb.nl) | 1 | -1/+1 | |
2013-06-24 | Add a config var to let the choice of having the lower case on the ↵ | Adrian | 1 | -1/+13 | |
extensions when uploading. The default value is set to FALSE. | |||||
2013-06-24 | Merge pull request #2488 from Xeli/develop | Andrey Andreev | 1 | -1/+14 | |
Add support for https behind a reverse proxy using X-Forwarded-Proto | |||||
2013-06-24 | some more readablility tweaks in system/core/Common | Richard Deurwaarder (Xeli) | 1 | -2/+3 | |
2013-06-24 | remove else clause in is_https function, just add return FALSE as fallback | Richard Deurwaarder (Xeli) | 1 | -4/+1 | |
2013-06-24 | remove newline again in system/core/Common.php, silly editor keeps adding it | Richard Deurwaarder (Xeli) | 1 | -1/+1 | |
2013-06-24 | fix indentation according to codeigniter codestyle system/core/Common | Richard Deurwaarder (Xeli) | 1 | -18/+18 | |
2013-06-24 | Revert "remove newline at eof in syste/core/Common" | Richard Deurwaarder (Xeli) | 1 | -1/+1 | |
This reverts commit 7061bd014b6b7dbf89bf42e940aa134228f044ce. | |||||
2013-06-24 | Force the file extension to lower case | Adrian | 1 | -2/+2 | |
2013-06-24 | remove newline at eof in syste/core/Common | Richard Deurwaarder (Xeli) | 1 | -1/+1 | |
2013-06-24 | remove newline in system/core/Common.php | Richard Deurwaarder (Xeli) | 1 | -0/+1 | |
2013-06-24 | Use codeigniter coding style | Richard Deurwaarder (Xeli) | 1 | -5/+11 | |
2013-06-24 | Merge pull request #2403 from groovenectar/loader-fix | Andrey Andreev | 1 | -1/+1 | |
Fix for extending classes in a subdirectory (e.g. drivers) | |||||
2013-06-19 | Change True -> TRUE per codeigniter guidelines | Richard Deurwaarder (Xeli) | 1 | -4/+4 | |
2013-06-19 | Add support for https behind a reverse proxy using X-Forwarded-Proto | Richard Deurwaarder (Xeli) | 1 | -4/+12 | |