summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2012-07-30Some clean-up and style changesAndrey Andreev1-9/+9
2012-07-29refactored (crunched down) _stringify_attributesChad Furman1-1/+40
2012-07-28Merge pull request #1640 from thecrypticace/developAlex Bilbie1-1/+24
Added support for IP Address Range Masks to the Proxy IPs config option
2012-07-23output->_display_cache() simplificationsvlakoff1-2/+2
remove an unneeded regex capturing group and an unneeded trim()
2012-07-23output->_display_cache() optimizationvlakoff1-1/+1
faster method to remove the timestamp from the content to be served
2012-07-23Update system/core/Input.phpJordan Pittman1-11/+17
2012-07-21Added support for IP Address Range Masks (e.g. 192.168.137.0/24) to the ↵Jordan Pittman1-2/+19
Proxy IPs config option
2012-07-16Inconsistency between log_message and show_error when encountering a ↵jonnu1-1/+1
non-existant class Signed-off-by: jonnu <jontce@gmail.com>
2012-07-13Loader::model() - rename foreach ($model AS $single_model) to ($model AS ↵Joel Limberg1-2/+2
$class). Consistent with ::library() and ::_ci_load_class()
2012-07-13Rename $babe => $single_model, in foreach ($model AS $babe) {...}joellimberg1-2/+2
2012-07-11Fix a typo in Common.phpvlakoff1-1/+1
2012-07-10Merge pull request #1548 from chrisguiney/error_reportingAndrey Andreev1-1/+2
Respect display_errors when deciding if to display an error...
2012-07-04updated the changelog, fixed some whitespaceChristopher Guiney1-1/+1
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-29Respect display_errors when deciding if to display an error -- useful for ↵Christopher Guiney1-1/+2
environments where you want to log errors, but not show them.
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>