From 1d615f73d482e5877b6d6f39d9f53fea01b93bd1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 1 Nov 2021 11:21:05 +0100 Subject: [PATCH] Wrap overly long line in SystemCheckPage --- .../install/files/lib/acp/page/SystemCheckPage.class.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/acp/page/SystemCheckPage.class.php b/wcfsetup/install/files/lib/acp/page/SystemCheckPage.class.php index 1a090c9846..f6fb694528 100644 --- a/wcfsetup/install/files/lib/acp/page/SystemCheckPage.class.php +++ b/wcfsetup/install/files/lib/acp/page/SystemCheckPage.class.php @@ -295,7 +295,12 @@ class SystemCheckPage extends AbstractPage $this->results['mysql']['searchEngine']['result'] = empty($this->results['mysql']['searchEngine']['incorrectTables']); - if ($this->results['mysql']['result'] && $this->results['mysql']['innodb'] && $this->results['mysql']['foreignKeys'] && $this->results['mysql']['searchEngine']['result']) { + if ( + $this->results['mysql']['result'] + && $this->results['mysql']['innodb'] + && $this->results['mysql']['foreignKeys'] + && $this->results['mysql']['searchEngine']['result'] + ) { $this->results['status']['mysql'] = true; } } -- 2.20.1