summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-11-23 02:54:13 +0000
committerDries Buytaert <dries@buytaert.net>2010-11-23 02:54:13 +0000
commit8f5201153dff2f4620a6f2392943f894676ed81b (patch)
treeeff81ae730b46274eb8cd34148385a4825072cea /modules
parentd77d02567cb97a28aedc5ea9d8f4b34b02a1137a (diff)
downloadbrdo-8f5201153dff2f4620a6f2392943f894676ed81b.tar.gz
brdo-8f5201153dff2f4620a6f2392943f894676ed81b.tar.bz2
- Patch #944484 by xmacinfo: performance bandwidth optimization text do not match latest aggregation performance fix.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 647ffc5c7..6bd1eac0c 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1695,13 +1695,13 @@ function system_performance_settings() {
);
$form['bandwidth_optimization']['preprocess_css'] = array(
'#type' => 'checkbox',
- '#title' => t('Aggregate and compress CSS files into one file.'),
+ '#title' => t('Aggregate and compress CSS files.'),
'#default_value' => intval(variable_get('preprocess_css', 0) && $is_writable),
'#disabled' => $disabled,
);
$form['bandwidth_optimization']['preprocess_js'] = array(
'#type' => 'checkbox',
- '#title' => t('Aggregate JavaScript files into one file.'),
+ '#title' => t('Aggregate JavaScript files.'),
'#default_value' => intval(variable_get('preprocess_js', 0) && $is_writable),
'#disabled' => $disabled,
);