summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-22 18:20:25 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-22 18:20:25 +0000
commitc1b5c774a35df1952148d6550fce6e77f81c2bf6 (patch)
treec62641b9ffc478922ed30765bf0e9be995f9bcdb /modules
parent154bfccf1565c1dddfea43574821cc98810871ac (diff)
downloadbrdo-c1b5c774a35df1952148d6550fce6e77f81c2bf6.tar.gz
brdo-c1b5c774a35df1952148d6550fce6e77f81c2bf6.tar.bz2
Outdated use of watchdog() noticed while creating translation templates
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 35b8999be..b35092fb2 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -1224,7 +1224,7 @@ function system_cron() {
// If files that exist cannot be deleted, continue so the database remains
// consistent.
if (!file_delete($file->filepath)) {
- watchdog('file system', t('Could not delete temporary file "%path" during garbage collection', array('%path' => $file->filepath)), 'error');
+ watchdog('file system', 'Could not delete temporary file "%path" during garbage collection', array('%path' => $file->filepath), 'error');
continue;
}
}