summaryrefslogtreecommitdiff
path: root/modules/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-01 10:03:25 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-01 10:03:25 +0000
commitf3d0fed0e66f9cb2a761b2059803decf653049f0 (patch)
tree75df1fd76dc46e9636423c66a30bdd24806fc8c3 /modules/system.module
parentcc835757a51787903eb054ed2ada73ea6434bb05 (diff)
downloadbrdo-f3d0fed0e66f9cb2a761b2059803decf653049f0.tar.gz
brdo-f3d0fed0e66f9cb2a761b2059803decf653049f0.tar.bz2
- Patch #35759 by mikeryan: fixed typo in file_directory_temp fieldname.
Diffstat (limited to 'modules/system.module')
-rw-r--r--modules/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system.module b/modules/system.module
index 1a7bf9d95..a8c8c3f5e 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -327,7 +327,7 @@ function system_view_general() {
$directory_temp = variable_get('file_directory_temp', FILE_DIRECTORY_TEMP);
file_check_directory($directory_temp, FILE_CREATE_DIRECTORY, 'file_directory_temp');
- $form['files']['file_directory_tmp'] = array(
+ $form['files']['file_directory_temp'] = array(
'#type' => 'textfield', '#title' => t('Temporary directory'), '#default_value' => $directory_temp, '#maxlength' => 255, '#valid' => 'directory',
'#description' => t('Location where uploaded files will be kept during previews. Relative paths will be resolved relative to the file system path.')
);