summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-12-14Minify output in css and javascript codeWill Mendes1-4/+6
Minify output in css and javascript code
2012-07-04Fix some whitespace, removed unnecessary string concatenation.Eric Roberts1-3/+3
2012-07-04Moved redundant $check_locations definition out of loop.Eric Roberts1-4/+4
2012-07-03Fix an error in Loader code documentationvlakoff1-1/+1
That's not $this->load_vars(), but $this->load->vars()
2012-07-02Clean up regexes in Security->xss_clean()vlakoff1-7/+7
Removed some unneeded capturing groups (or made them non-capturing) and some unneeded escape characters
2012-06-26Fix issue #427Andrey Andreev1-0/+13
2012-06-24Use the VIEWPATH constant, instead of assuming the user hasn't moved themNicholas Avenell1-2/+2
2012-06-23If there is no output then no need to try minifying itPhil Sturgeon1-0/+5
2012-06-21Replaced block tag minification regex with a less greedy solution.Phil Sturgeon1-1/+1
2012-06-16Fix issue #999Andrey Andreev2-5/+19
2012-06-16Fix issue #938 + some related improvementsAndrey Andreev1-13/+7
2012-06-16Spelling fixes - `wether` to `whether`Alex Bilbie2-3/+3
Interestingly `wether` means a castrated ram in old English
2012-06-16Fix issue #318 + added a default to the switch() in CI_Output::minify()Andrey Andreev1-39/+43
2012-06-15Fix issue #167Andrey Andreev1-1/+1
2012-06-15Add support for HTTP code 303 in set_status_header(), as suggested in pull #341Andrey Andreev1-7/+13
2012-06-15Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon14-40/+81
2012-06-15Merge branch 'feature/minify_output' of ↵Phil Sturgeon1-3/+164
https://github.com/atiredmachine/CodeIgniter into develop
2012-06-14And yet another missed line from the last oneAndrey Andreev1-1/+1
2012-06-14Fix an issue from d461934184d95b0cfb2feec93f27b621ef72a5c2Andrey Andreev1-3/+3
2012-06-14Fix issue #10 + URI class speed improvementsAndrey Andreev1-8/+12
2012-06-12Fix APPPATHAndrey Andreev1-1/+1
2012-06-12Change file permissions for system/core/*.php and system/database/DB.php so ↵Andrey Andreev12-0/+0
that they don't differ from the rest
2012-06-10Merge branch 2.1-stable into developAndrey Andreev1-4/+16
2012-06-09Fix defined() usage in system/core/Common.phpAndrey Andreev1-1/+1
2012-06-07Remove some unnecessary function_exists() checks and some minor improvementsAndrey Andreev1-1/+1
2012-06-06removed ip_version()Joffrey Jaffeux1-21/+1
2012-06-06styling guide false -> FALSEJoffrey Jaffeux1-1/+1
2012-06-06Merge https://github.com/EllisLab/CodeIgniter into valid-ipv6Joffrey Jaffeux1-2/+8
Conflicts: user_guide_src/source/changelog.rst
2012-06-06ip_version() now returns int instead of stringJoffrey Jaffeux1-3/+3
2012-06-06Add a second parameter (charset) to CI_Output::set_content_type() + fix for ↵Andrey Andreev1-2/+8
issue #666
2012-06-06follow styling guideJoffrey Jaffeux1-1/+1
2012-06-06Add support for ipv6Joffrey Jaffeux1-1/+21
2012-06-05Replace set_magic_quotes_runtime() with an ini_set() callAndrey Andreev1-1/+1
2012-06-05Fix a magic_quotes-related bug and changed the default parameter value for ↵Andrey Andreev2-3/+3
is_php()
2012-06-05Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵Andrey Andreev2-15/+34
config/mimes.php is used by multiple core classes, libraries and helpers and each of them has implemented an own way of getting it, which is not needed and is hard to maintain. This also fixes issue #1411
2012-06-04Direct return from mimes config, instead of using global $mimes;Phil Sturgeon1-4/+2
Global variables are generally a terrible idea, especially for something as simple as this. The mimes.php now returns an array instead of just injecting a variable name into the global namespace.
2012-06-04Loader was too specific about === "", some cases were NULL.Phil Sturgeon1-1/+1
Signed-off-by: Phil Sturgeon <email@philsturgeon.co.uk>
2012-06-04Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5dAndrey Andreev9-16/+19
2012-06-02Fixed bug introduced in ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5dAlex Bilbie1-1/+1
2012-06-02Don't assume $_ci_path is a string (could be FALSE)Alex Bilbie1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/coreAlex Bilbie13-70/+70
2012-05-31Edit to meet CI coding standardsThanasis Polychronakis1-3/+3
2012-05-31Indended code to meet CI standardsThanasis Polychronakis1-2/+6
2012-05-31Load base config first, then environment's configThanasis Polychronakis1-9/+9
2012-05-27Continuation for Security and Table code-coverage, add coverage report to travisTaufan Aditya1-0/+1
2012-05-24Fix issue #1388Andrey Andreev1-2/+2
2012-05-23Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon2-13/+2
2012-05-23Input, Session and Cookie get's will return NULL.Phil Sturgeon2-11/+11
Read more about this change here: http://codeigniter.com/forums/viewthread/215833
2012-05-23Merge pull request #1367 from PawelDecowski/developPhil Sturgeon1-11/+0
Remove set_time_limit() call. Fixes #1346
2012-05-23Merge pull request #1357 from timw4mail/errorsPhil Sturgeon1-2/+2
Move errors to views folder