From bb0d705ebf59c4c263b5229488b00cf21e770127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 12 Jun 2018 09:41:08 +0200 Subject: [PATCH] [ticket/15342] Fix files not being tracked PHPBB3-15342 --- phpBB/phpbb/files/filespec_storage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/phpbb/files/filespec_storage.php b/phpBB/phpbb/files/filespec_storage.php index 8b6194fe99..a6870c4a05 100644 --- a/phpBB/phpbb/files/filespec_storage.php +++ b/phpBB/phpbb/files/filespec_storage.php @@ -447,6 +447,7 @@ class filespec_storage $fp = fopen($this->filename, 'rb'); $storage->write_stream($this->destination_file, $fp); fclose($fp); + $storage->track_file($this->destination_file); } catch (\phpbb\storage\exception\exception $e) {