aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-05-08 11:05:01 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-05-08 11:05:01 +0200
commit571f6dc9b53068ac655924616022e92d0e1c1ce9 (patch)
treeab0ff4df7b8a816525f2c8c1646b670e6fe88270 /phpBB/includes/functions_posting.php
parent3f84473306d2a5c06adb726fbd22a6a18555c47e (diff)
downloadforums-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.php2
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)
{