summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-05-01MIMES : added new mime type for 3gp based video file upload, added space ↵Intekhab Rizvi1-1/+1
between array
2015-05-01MIMES : added new mime type for 3gp based video file uploadIntekhab Rizvi1-1/+1
2015-04-30Fix #3823Andrey Andreev3-2/+3
2015-04-30Merge pull request #3824 from jim-parry/fix/docsAndrey Andreev2-2/+2
[ci skip] Fix typos in user guide
2015-04-30Fix typos in user guide.Master Yoda2-2/+2
Corrected "csrf_regenerate" in libraries/security.rst (it read "csrf_regeneration", incorrect per source code). Corrected "blog" as default controller in general/controllers.rst (it read "Blog", not per convention).
2015-04-29Add list_fields() support for SQLite3Andrey Andreev4-17/+49
2015-04-29Fix #3816Andrey Andreev2-1/+2
2015-04-29Merge pull request #3804 from refringe/feature/cache-defaultsAndrey Andreev1-20/+2
Cache Library Clean-up
2015-04-29Merge pull request #3819 from kenjis/patch-1Andrey Andreev1-2/+2
[ci skip] Fix migration_version docs
2015-04-29Fix migration_versionkenjis1-2/+2
2015-04-28Removed extra adapter validation. Adapter validation already happens in the ↵Tyler Brownell1-18/+2
system Driver library.
2015-04-27Adds error-level log messages when invalid adapters are set.Tyler Brownell1-0/+8
2015-04-27[ci skip] Remove redundant comment about log_thresholdAndrey Andreev1-2/+0
2015-04-25Merge pull request #3801 from ivantcholakov/developAndrey Andreev2-1/+2
Output cache: Fixing a wrong timestamp. Credits to khoggatt (CodeIgniter forum).
2015-04-24Reverts previous variable renaming and removes the foreach loop in favor of ↵Tyler Brownell1-24/+23
a simple if condition.
2015-04-24A changelog update 3.Ivan Tcholakov1-1/+1
2015-04-24A changelog update 2.Ivan Tcholakov1-1/+1
2015-04-24A changelog update.Ivan Tcholakov1-0/+1
2015-04-23Output cache: Fixing a wrong timestamp. Credits to khoggatt (CodeIgniter forum).Ivan Tcholakov1-1/+1
2015-04-23Renames $_adapter to $_driver. It's what we call it everywhere else.Tyler Brownell1-14/+14
2015-04-23Cache Library Defaults FixedTyler Brownell1-15/+6
- Comments! - Updates the cache library to validate *both* adapters. - No longer attempts to set an undefined "memcached" class variable. - $key variable renamed to $driver_type (more descriptive).
2015-04-23Updates the fallback driver variable name to match the config option name.Tyler Brownell1-6/+6
2015-04-23Merge pull request #3799 from absfarah/patch-1Andrey Andreev1-0/+1
[ci skip] Adding two new accented characters and their ASCII equivalent
2015-04-23Adding two new characters and their ASCII equivalentAbs1-0/+1
2015-04-20Fix #3787Andrey Andreev2-1/+2
2015-04-20[ci skip] Remove whitespaceAndrey Andreev1-1/+1
2015-04-14Merge pull request #3775 from brettsantore/devAndrey Andreev1-0/+1
Add test for email address with subdomain
2015-04-14Add test for email address with subdomainBrett Santore1-0/+1
2015-04-14Fix #3771Andrey Andreev2-10/+5
2015-04-14Fix #3773Andrey Andreev2-0/+25
2015-04-14[ci skip] Change Array helpers element(), elements() signaturesAndrey Andreev1-2/+2
Close #3767
2015-04-14Merge pull request #3770 from ftwbzhao/feature/ci/helperAndrey Andreev1-0/+1
[ci skip] plural() support for 'quiz' -> 'quizzes'
2015-04-14Merge pull request #3769 from ftwbzhao/developAndrey Andreev1-0/+4
[ci skip] Support for status codes 100, 101, 402 in set_status_header()
2015-04-14[helper]update plural regularftwbzhao1-0/+1
2015-04-14Status Code Definitionsftwbzhao1-0/+4
2015-04-12Close #3761Andrey Andreev2-1/+2
2015-04-09Merge pull request #3744 from ftwbzhao/developAndrey Andreev2-1/+6
[ci skip] Cache/Redis authentication failure handling
2015-04-09add changelog for #3744ftwbzhao1-0/+1
2015-04-09Merge branch 'develop' of https://github.com/bcit-ci/CodeIgniter into developftwbzhao22-50/+432
2015-04-09Merge pull request #3753 from ftwbzhao/feature/ci/3.0Andrey Andreev1-2/+2
[ci skip] Fix Cache/Redis get_metadata() for non-existing properties
2015-04-09[fix] redis get_metadataftwbzhao1-1/+1
2015-04-09use = instead of +=ftwbzhao1-1/+1
2015-04-08[ci skip] Fix comment typosAndrey Andreev2-2/+2
https://github.com/bcit-ci/CodeIgniter/pull/3748#issuecomment-90925762
2015-04-08Merge pull request #3748 from MUlt1mate/developAndrey Andreev1-1/+1
[ci skip] Fix a comment typo
2015-04-08typomult1mate1-1/+1
2015-04-07[feature] check redis auth failedftwbzhao1-1/+5
2015-04-06Disallow empty FV rules ... for consistencyAndrey Andreev1-7/+5
Related: #3736
2015-04-06Move strtolower() call from PR #3739 out of the loopAndrey Andreev1-3/+2
2015-04-06Merge pull request #3739 from yahyaerturan/developAndrey Andreev1-0/+3
#3727 Lowercase $side variable for $this->db->like() in Query Builder
2015-04-06#3727 Lowercase $side variable for $this->db->like() in Query BuilderYahya Erturan1-0/+3
$this->db->like('name',$value,'AFTER') returns LIKE '%$value%'. Safer to lowercase in case of UPPERCASE habits.