summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-10-17 19:29:26 +0000
committerDries Buytaert <dries@buytaert.net>2006-10-17 19:29:26 +0000
commit1a4aad10ca65b70944c890e52990af63e0f8fc18 (patch)
tree57a89c05d20bc83d0c58f08411049891a05b313a
parenta856f813d7833211fc393b26218495bd634ea1ae (diff)
downloadbrdo-1a4aad10ca65b70944c890e52990af63e0f8fc18.tar.gz
brdo-1a4aad10ca65b70944c890e52990af63e0f8fc18.tar.bz2
- Bug #89680: 'not not' -> 'not'.
-rw-r--r--includes/file.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/file.inc b/includes/file.inc
index 3212c5546..8df67ec65 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -319,7 +319,7 @@ function file_copy(&$source, $dest = 0, $replace = FILE_EXISTS_RENAME) {
if ($basename === FALSE) {
$source = is_object($source) ? $source->filepath : $source;
drupal_set_message(t('The selected file %file could not be uploaded, because the destination %directory is not properly configured.', array('%file' => $source, '%directory' => $dest)), 'error');
- watchdog('file system', t('The selected file %file could not not be uploaded, because the destination %directory could not be found, or because its permissions do not allow the file to be written.', array('%file' => $source, '%directory' => $dest)), WATCHDOG_ERROR);
+ watchdog('file system', t('The selected file %file could not be uploaded, because the destination %directory could not be found, or because its permissions do not allow the file to be written.', array('%file' => $source, '%directory' => $dest)), WATCHDOG_ERROR);
return 0;
}