diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-04 09:36:27 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-04 09:36:27 +0200 |
commit | 9f3fcf036c59d5bab4dc134caec815f09b8f22e4 (patch) | |
tree | 49d62e89a01b7f18a518308856aab975b4265089 /apps/files_trashbin/lib | |
parent | 05cf34ea1fe2d5032dcb2857c31194432d7d443b (diff) | |
download | nextcloud-server-9f3fcf036c59d5bab4dc134caec815f09b8f22e4.tar.gz nextcloud-server-9f3fcf036c59d5bab4dc134caec815f09b8f22e4.zip |
fixing typo
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/trashbin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index b507d5f3df9..fb23b516208 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -753,7 +753,7 @@ class Trashbin { $filename = pathinfo($file['name'], PATHINFO_FILENAME); if ($timestamp < $limit) { $size += self::delete($filename, $timestamp); - \OC_Log::write('files_trashbin', 'remove "' . $filename . '" fom trash bin because it is older than ' . $retention_obligation, \OC_log::INFO); + \OC_Log::write('files_trashbin', 'remove "' . $filename . '" from trash bin because it is older than ' . $retention_obligation, \OC_log::INFO); } } $availableSpace += $size; |