From f3d0fed0e66f9cb2a761b2059803decf653049f0 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 1 Nov 2005 10:03:25 +0000
Subject: [PATCH] - Patch #35759 by mikeryan: fixed typo in file_directory_temp
 fieldname.

---
 modules/system.module        | 2 +-
 modules/system/system.module | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/system.module b/modules/system.module
index 1a7bf9d95ae1..a8c8c3f5e99f 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.')
   );
diff --git a/modules/system/system.module b/modules/system/system.module
index 1a7bf9d95ae1..a8c8c3f5e99f 100644
--- a/modules/system/system.module
+++ b/modules/system/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.')
   );
-- 
GitLab