1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-25 18:13:28 +01:00

[ticket/15342] Fix files not being tracked

PHPBB3-15342
This commit is contained in:
Rubén Calvo 2018-06-12 09:41:08 +02:00
parent 944432d382
commit bb0d705ebf

View File

@ -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)
{