diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-05-08 11:05:01 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-05-08 11:05:01 +0200 |
commit | 571f6dc9b53068ac655924616022e92d0e1c1ce9 (patch) | |
tree | ab0ff4df7b8a816525f2c8c1646b670e6fe88270 /phpBB/includes/functions_posting.php | |
parent | 3f84473306d2a5c06adb726fbd22a6a18555c47e (diff) | |
download | forums-571f6dc9b53068ac655924616022e92d0e1c1ce9.tar forums-571f6dc9b53068ac655924616022e92d0e1c1ce9.tar.gz forums-571f6dc9b53068ac655924616022e92d0e1c1ce9.tar.bz2 forums-571f6dc9b53068ac655924616022e92d0e1c1ce9.tar.xz forums-571f6dc9b53068ac655924616022e92d0e1c1ce9.zip |
[ticket/13825] Correctly call phpbb_filesystem in create_thumbnail
PHPBB3-13825
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 4233395574..fcab667cb2 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -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) { |