summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-07-07 20:18:22 +0000
committerDries Buytaert <dries@buytaert.net>2004-07-07 20:18:22 +0000
commit3568ed57e1fc0b0a46ad683b529ea5823a7b78d4 (patch)
tree2a7271215466e90c67bca910bde224e9f405c8cf /modules/system/system.module
parentbddcee534fb666890d82089742ec709a718588dc (diff)
downloadbrdo-3568ed57e1fc0b0a46ad683b529ea5823a7b78d4.tar.gz
brdo-3568ed57e1fc0b0a46ad683b529ea5823a7b78d4.tar.bz2
- Moving the title.module from core to contrib as discussed on the mailing list.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index eb0607dc2..71cc1a9c7 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -146,10 +146,10 @@ function system_view_general() {
// file system:
if (!file_check_directory(variable_get('file_directory_path', 'files'))) {
- form_set_error('file_directory_path', t('Directory does not exist, or is not writable.'));
+ form_set_error('file_directory_path', t('the directory does not exist, or is not writable.'));
}
if (!file_check_directory(variable_get('file_directory_temp', (PHP_OS == 'WINNT' ? 'c:\\windows\\temp' : '/tmp')))) {
- form_set_error('file_directory_temp', t('Directory does not exist, or is not writable.'));
+ form_set_error('file_directory_temp', t('the directory does not exist, or is not writable.'));
}
$group = form_textfield(t('File system path'), 'file_directory_path', variable_get('file_directory_path', 'files'), 70, 255, t('A file system path where the files will be stored. This directory has to exist and be writable by Drupal. If the download method is set to public this directory has to be relative to Drupal installation directory, and be accessible over the web. When download method is set to private this directory should not be accessible over the web. Changing this location after the site has been in use will cause problems so only change this setting on an existing site if you know what you are doing.'));
$group .= form_textfield(t('Temporary directory'), 'file_directory_temp', variable_get('file_directory_temp', (PHP_OS == 'WINNT' ? 'c:\\windows\\temp' : '/tmp')), 70, 255, t('Location where files can be saved temporarily. This directory should not be accessible from the web.'));