summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-02-13[ci skip] Add index.html to system/core/compat/Andrey Andreev1-0/+10
2014-02-13Merge pull request #2874 from aanbar/developAndrey Andreev3-7/+47
[Cart Library] Allow updating all properties for an item.
2014-02-13Added Missing new line.Ahmad Anbar1-0/+1
2014-02-13Re-arranged documentation, fixed comment.Ahmad Anbar2-5/+16
2014-02-13Fix syntax errorAndrey Andreev1-2/+2
2014-02-13Added changelog entry.Ahmad Anbar3-6/+18
An example to the docs. Tidy code a little bit.
2014-02-13Update Text and Inflector helpers to utilize mbstring, if availableAndrey Andreev3-19/+25
Text: word_wrap(), ellipsize() Inflector: humanize(), underscore() (rel #2855)
2014-02-13Merge pull request #2610 from mjnaderi/patch-1Andrey Andreev1-4/+4
character_limiter now works correct for UTF-8 strings
2014-02-13Introducing compatibility layersAndrey Andreev7-0/+582
- 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-13Delete by values, not keysAhmad Anbar1-4/+3
2014-02-13Fixed code style & added few extra checks.Ahmad Anbar2-7/+20
Updated cart documentation.
2014-02-13[ci skip] Test fixesAndrey Andreev2-5/+10
2014-02-12Move mbstring/iconv configuration and MB_ENABLED, ICONV_ENABLED out of ↵Andrey Andreev4-61/+73
CI_Utf8::__construct() Also, use mb_substitute_character() instead of ini_set()
2014-02-12[ci skip] Indentation fixAndrey Andreev1-1/+1
2014-02-12Remove pointless mocks for remove_invisible_characters(), is_php(), ↵Andrey Andreev1-51/+0
is_really_writable()
2014-02-11Allow updating all properties for an item.Ahmad Anbar1-1/+5
2014-02-11Utf8/iconv/mbstring-related changesAndrey Andreev6-10/+59
2014-02-11Merge pull request #2873 from darwinel/developAndrey Andreev3-6/+6
Some other small writing consistency fixes
2014-02-11[ci skip] Update the XML-RPC lib docsAndrey Andreev1-65/+66
2014-02-11Some other small writing consistency fixesdarwinel3-6/+6
As described in the Style guide. Found after some grep’ing.
2014-02-11Merge pull request #2872 from darwinel/developAndrey Andreev16-22/+38
Writing style fix based on style guide
2014-02-11"BASEPATH check" consistencydarwinel15-15/+31
As described in issue #2870 + A change in the „How to create a library” example in the user_guide
2014-02-11Add PHP 5.6 (currently alpha) to .travis.ymlAndrey Andreev1-0/+1
2014-02-11Writing style fix based on style guidedarwinel1-7/+7
„Use of || is discouraged as its clarity on some output devices is low (looking like the number 11 for instance). && is preferred over AND but either are acceptable, and a space should always precede and follow !.”
2014-02-11Merge pull request #2869 from darwinel/developAndrey Andreev193-195/+195
2013 > 2014
2014-02-112013 > 2014darwinel193-195/+195
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-02-11More code reduced from CI_TableAndrey Andreev1-17/+5
2014-02-11Another tiny optimization in CI_Table + remove an accidental additionAndrey Andreev1-6/+4
2014-02-11Change CI_Table:: to NULLAndrey Andreev2-7/+7
Because semantics
2014-02-11A bug fix and optimizations in CI_TableAndrey Andreev3-69/+55
2014-02-11Fix issue #43Andrey Andreev2-28/+44
2014-02-11Fix a typo in the smileys config (PR #2853)Andrey Andreev1-1/+1
2014-02-11Merge branch 'develop' into patch-1Andrew82-5171/+8529
Conflicts: system/libraries/Calendar.php
2014-02-11updates per narfbg requestAndrew1-3/+1
I did a bunch of Git tutorials, and (i think) understand a lot more now. this update is to address narfbg comments, and add to pull request.
2014-02-10CI_Security: URL-decode until possibleAndrey Andreev1-1/+5
2014-02-10[ci skip] Fix a typoAndrey Andreev1-1/+1
2014-02-10CI_Security: Expect a backslash as a tag separatorAndrey Andreev1-2/+2
2014-02-10CI_Security: Filter jscript, wscript, vbs, confirm, prompt the same way as ↵Andrey Andreev1-6/+10
javascript, alert
2014-02-10Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developAndrey Andreev2-2/+2
2014-02-10CI_Encryption: Rename 'base64' parameter to 'raw_data' and add docsAndrey Andreev3-6/+563
2014-02-10Merge pull request #2867 from Chanthoeun/developAndrey Andreev1-1/+1
Correcting word "peforming" to "performing"
2014-02-10Remove bottom lineChanthoeun1-0/+1
2014-02-10Remove bottom lineChanthoeun1-1/+0
2014-02-10Remove bottom lineChanthoeun1-0/+1
2014-02-10Remove bottom lineChanthoeun1-1/+0
2014-02-10Correct word peforming to performingChanthoeun1-2/+2
2014-02-09updates per narfbg's commentsAndrew1-5/+6
2014-02-09Merge pull request #2861 from iolufemi/developAndrey Andreev1-1/+1
Fixed Typo in String Helper function
2014-02-09Removed new line at the end of file locally.iolufemi1-1/+1
2014-02-09template as array instead of stringAndrew1-39/+91
library accepts `$config['template']` as array and string, to perform template replacements. updated `$this->temp` var to `$this->replacements` to be less ambiguous about what it does