summaryrefslogtreecommitdiff
path: root/includes/file.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-02 14:41:37 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-02 14:41:37 +0000
commitee701b3336d04488122c13e142369e179a63be16 (patch)
tree158725be7c013a3c67d386facc89f34688d39096 /includes/file.inc
parent5e5a07f513ee793a8bbe5094895b4ebd5a1de8a2 (diff)
downloadbrdo-ee701b3336d04488122c13e142369e179a63be16.tar.gz
brdo-ee701b3336d04488122c13e142369e179a63be16.tar.bz2
- Patch #155986 by Uwe: fixed typos.
Diffstat (limited to 'includes/file.inc')
-rw-r--r--includes/file.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/file.inc b/includes/file.inc
index 32f331b5a..f1206b513 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -21,7 +21,7 @@ define('FILE_EXISTS_REPLACE', 1);
define('FILE_EXISTS_ERROR', 2);
/**
- * A files status can be one of two values: temorary or permanent. The status
+ * A files status can be one of two values: temporary or permanent. The status
* for each file Drupal manages is stored in the {files} tables. If the status
* is temporary Drupal's file garbage collection will delete the file and
* remove it from the files table after a set period of time.
@@ -262,7 +262,7 @@ function file_copy(&$source, $dest = 0, $replace = FILE_EXISTS_RENAME) {
// Give everyone read access so that FTP'd users or
// non-webserver users can see/read these files,
- // and give group write permissions so group memebers
+ // and give group write permissions so group members
// can alter files uploaded by the webserver.
@chmod($dest, 0664);
}
@@ -454,7 +454,7 @@ function file_space_used($uid = NULL) {
* Saves a file upload to a new location. The source file is validated as a
* proper upload and handled as such.
*
- * The file will be added to the files table as a temporary file. Temorary files
+ * The file will be added to the files table as a temporary file. Temporary files
* are periodically cleaned. To make the file permanent file call
* file_set_status() to change it's status.
*