summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-10 20:34:03 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-10 20:34:03 +0000
commitbdf5dc9d1d18f15275362a0a717f33077a041d1e (patch)
tree9be87da028ba1733f83e1a664d775591d87a19f6 /modules/system/system.module
parenta98fa4c2c883637939b8eb2510eb4706adac335f (diff)
downloadbrdo-bdf5dc9d1d18f15275362a0a717f33077a041d1e.tar.gz
brdo-bdf5dc9d1d18f15275362a0a717f33077a041d1e.tar.bz2
- Patch #102413 by yched: path node/add/[poll|forum|blog] defined twice.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 6615b6c31..e2ea74464 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -659,7 +659,7 @@ function system_performance_settings() {
'#title' => t('Page cache'),
'#description' => t('Enabling the cache will offer a significant performance boost. Drupal can store and send compressed cached pages requested by <em>anonymous</em> users. By caching a web page, Drupal does not have to construct the page each time someone wants to view it.'),
);
-
+
$form['page_cache']['cache'] = array(
'#type' => 'radios',
'#title' => t('Caching mode'),
@@ -677,15 +677,15 @@ function system_performance_settings() {
'#options' => $period,
'#description' => t('On high-traffic sites it can become necessary to enforce a minimum cache lifetime. The minimum cache lifetime is the minimum amount of time that will go by before the cache is emptied and recreated. A larger minimum cache lifetime offers better performance, but users will not see new content for a longer period of time.')
);
-
+
$form['bandwidth_optimizations'] = array(
'#type' => 'fieldset',
'#title' => t('Bandwidth optimizations'),
'#description' => t('These options can help reduce both the size and number of requests made to your website. This can reduce the server load, the bandwidth used, and the average page loading time for your visitors.')
);
-
+
$directory = file_directory_path();
- $is_writable = is_dir($directory) && is_writable($directory) && (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PUBLIC);
+ $is_writable = is_dir($directory) && is_writable($directory) && (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PUBLIC);
$form['bandwidth_optimizations']['preprocess_css'] = array(
'#type' => 'radios',
'#title' => t('Aggregate and compress CSS files'),