From 8f5201153dff2f4620a6f2392943f894676ed81b Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Tue, 23 Nov 2010 02:54:13 +0000 Subject: [PATCH] - Patch #944484 by xmacinfo: performance bandwidth optimization text do not match latest aggregation performance fix. --- modules/system/system.admin.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 647ffc5c755c..6bd1eac0c787 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, ); -- GitLab