From 044536dffb7071332d82b47410ab192e3ad1a6a4 Mon Sep 17 00:00:00 2001 From: rxu Date: Sat, 21 Jun 2025 09:56:21 +0700 Subject: [PATCH] [ticket/17529] Remove unneeded wrapping curly braces PHPBB-17529 --- .../install/module/requirements/task/check_filesystem.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/phpBB/phpbb/install/module/requirements/task/check_filesystem.php b/phpBB/phpbb/install/module/requirements/task/check_filesystem.php index c432e40fbc..32c14d59c9 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_filesystem.php +++ b/phpBB/phpbb/install/module/requirements/task/check_filesystem.php @@ -167,9 +167,7 @@ class check_filesystem extends \phpbb\install\task_base } else if (!$this->filesystem->is_writable($path)) { - { - $writable = false; - } + $writable = false; } $this->set_test_passed(($exists && $writable) || $failable);