diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-11-23 02:54:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-11-23 02:54:13 +0000 |
commit | 8f5201153dff2f4620a6f2392943f894676ed81b (patch) | |
tree | eff81ae730b46274eb8cd34148385a4825072cea /modules | |
parent | d77d02567cb97a28aedc5ea9d8f4b34b02a1137a (diff) | |
download | brdo-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.inc | 4 |
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, ); |