From bf2dd2cd75687c3b8ca393ae631b02fc8deee52f Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 12 Apr 2025 09:02:14 +0200 Subject: [PATCH] [ticket/17490] Remove not needed isset PHPBB-17490 --- phpBB/phpbb/messenger/method/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/messenger/method/base.php b/phpBB/phpbb/messenger/method/base.php index c8c7129caf..f3db4155ca 100644 --- a/phpBB/phpbb/messenger/method/base.php +++ b/phpBB/phpbb/messenger/method/base.php @@ -423,7 +423,7 @@ abstract class base implements messenger_interface */ public function save_queue(): void { - if ($this->use_queue && isset($this->queue)) + if ($this->use_queue) { $this->queue->save(); }