From a78eb6fb42312c8c8503e8d5f40640288d8b730a Mon Sep 17 00:00:00 2001 From: Derky Date: Sat, 23 Sep 2023 16:43:41 +0200 Subject: [PATCH] [ticket/17189] Show file names that couldn't be modified by installer PHPBB3-17189 --- .../phpbb/install/module/requirements/task/check_filesystem.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/phpbb/install/module/requirements/task/check_filesystem.php b/phpBB/phpbb/install/module/requirements/task/check_filesystem.php index 868af39433..f7ff019422 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_filesystem.php +++ b/phpBB/phpbb/install/module/requirements/task/check_filesystem.php @@ -217,6 +217,7 @@ class check_filesystem extends \phpbb\install\task_base catch (\phpbb\filesystem\exception\filesystem_exception $e) { // Do nothing + $this->response->add_warning_message($e->getMessage(), $e->get_filename()); } } @@ -232,6 +233,7 @@ class check_filesystem extends \phpbb\install\task_base } catch (\phpbb\filesystem\exception\filesystem_exception $e) { + $this->response->add_warning_message($e->getMessage(), $e->get_filename()); // Do nothing } }