1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

Merge pull request #5849 from rubencm/ticket/16351

[ticket/16351] Use CHMOD constants from filesystem_interface
This commit is contained in:
Marc Alexander
2020-02-15 16:45:57 +01:00
7 changed files with 15 additions and 15 deletions

View File

@@ -1480,7 +1480,7 @@ class acp_attachments
try
{
$this->filesystem->phpbb_chmod($phpbb_root_path . $upload_dir, CHMOD_READ | CHMOD_WRITE);
$this->filesystem->phpbb_chmod($phpbb_root_path . $upload_dir, \phpbb\filesystem\filesystem_interface::CHMOD_READ | \phpbb\filesystem\filesystem_interface::CHMOD_WRITE);
}
catch (\phpbb\filesystem\exception\filesystem_exception $e)
{