diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-15 00:02:00 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-15 00:02:00 +0200 |
commit | 3061ee737ff2c1853428482e1704b0973b621118 (patch) | |
tree | a46cc4be58b0f6240b2b4f1748e09cfc26fd5131 /application | |
parent | 8fe766dcd4251070c4b9dc52e882b14189e3df66 (diff) | |
parent | 1b8d0ef6491b77375bb068711bc5e10fe4ca4b8f (diff) |
Merge branch 'feature/minify_output' of https://github.com/atiredmachine/CodeIgniter into develop
Diffstat (limited to 'application')
-rw-r--r-- | application/config/config.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php index 2628885f0..a5fe339cb 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -359,6 +359,18 @@ $config['compress_output'] = FALSE; /* |-------------------------------------------------------------------------- +| Minify +|-------------------------------------------------------------------------- +| +| Removes extra characters (usually unnecessary spaces) from your +| output for faster page load speeds. Makes your outputted HTML source +| code less readable. +| +*/ +$config['minify_output'] = FALSE; + +/* +|-------------------------------------------------------------------------- | Master Time Reference |-------------------------------------------------------------------------- | @@ -398,5 +410,6 @@ $config['rewrite_short_tags'] = FALSE; $config['proxy_ips'] = ''; + /* End of file config.php */ /* Location: ./application/config/config.php */ |