diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-24 09:27:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-24 09:27:14 +0000 |
commit | 8258959e940d8a73da69f7be7e517588f46531a5 (patch) | |
tree | e866a1d1f5f25938c80159ebd41834921d8cc5f2 /modules/system/system.admin.inc | |
parent | 4f6dab5675b42d9f4ba4f0ad885423342cdce7b0 (diff) | |
download | brdo-8258959e940d8a73da69f7be7e517588f46531a5.tar.gz brdo-8258959e940d8a73da69f7be7e517588f46531a5.tar.bz2 |
- Patch #588480 by aspilicious, droplet: fixed interface string space issues.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 94f1e62cf..4b20d76c1 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1656,7 +1656,7 @@ function system_performance_settings() { $form['bandwidth_optimization'] = array( '#type' => 'fieldset', '#title' => t('Bandwidth optimization'), - '#description' => t('External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.') . $disabled_message, + '#description' => t('External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.') . $disabled_message, ); $js_hide = $cache == CACHE_DISABLED ? ' class="js-hide"' : ''; |