From faa63d22c41fd27834fadbed539b012004c93c8a Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Wed, 23 May 2012 13:08:58 +0900 Subject: [PATCH] Issue #1401558 by Berdir: Documentation follow-up for remove the usage handling logic from file_delete(). --- core/includes/file.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/includes/file.inc b/core/includes/file.inc index 0cf51de58f27..f20498917173 100644 --- a/core/includes/file.inc +++ b/core/includes/file.inc @@ -729,7 +729,7 @@ function file_usage_add(stdClass $file, $module, $type, $id, $count = 1) { ->expression('count', 'count + :count', array(':count' => $count)) ->execute(); - // Make sure that a used file is not permament. + // Make sure that a used file is permament. if ($file->status != FILE_STATUS_PERMANENT) { $file->status = FILE_STATUS_PERMANENT; file_save($file); -- GitLab