From 294bfb65b0408fc69284e5b732d1cd820f9417f7 Mon Sep 17 00:00:00 2001 From: webchick Date: Sun, 17 Mar 2013 00:51:13 -0700 Subject: [PATCH] Issue #1926228 by alexpott: Fixed CSS Performance setting checkbox description wrong. --- core/modules/system/system.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 4a4ba0e2ab2..58e6d58e49f 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -1698,7 +1698,7 @@ function system_performance_settings($form, &$form_state) { ); $form['bandwidth_optimization']['preprocess_css'] = array( '#type' => 'checkbox', - '#title' => t('Aggregate and compress CSS files.'), + '#title' => t('Aggregate CSS files.'), '#default_value' => $config->get('css.preprocess'), '#disabled' => $disabled, );