From 6b6c02aa7f68947b0193797dbfcbd502deefdf22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= <rubencm@gmail.com> Date: Tue, 31 Oct 2017 11:23:31 +0100 Subject: [PATCH] [ticket/15311] Fix variable PHPBB3-15311 --- phpBB/phpbb/filesystem/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/filesystem/filesystem.php b/phpBB/phpbb/filesystem/filesystem.php index 942ebb702f..52eb271b8a 100644 --- a/phpBB/phpbb/filesystem/filesystem.php +++ b/phpBB/phpbb/filesystem/filesystem.php @@ -773,7 +773,7 @@ class filesystem implements filesystem_interface if (!is_dir($tmp_dir)) { - $this->filesystem->mkdir($tmp_dir, 0777); + $this->mkdir($tmp_dir, 0777); } }