1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[ticket/13825] Correctly call phpbb_filesystem in create_thumbnail

PHPBB3-13825
This commit is contained in:
Marc Alexander 2015-05-08 11:05:01 +02:00
parent 3f84473306
commit 571f6dc9b5

View File

@ -822,7 +822,7 @@ function create_thumbnail($source, $destination, $mimetype)
try
{
$this->filesystem->phpbb_chmod($destination, CHMOD_READ | CHMOD_WRITE);
$phpbb_filesystem->phpbb_chmod($destination, CHMOD_READ | CHMOD_WRITE);
}
catch (\phpbb\filesystem\exception\filesystem_exception $e)
{