From 57540cfab20395665d1ec26a9f9cd3592fe016cd Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Mon, 20 Jan 2020 08:37:12 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#1064 --- wire/modules/System/SystemUpdater/SystemUpdate17.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wire/modules/System/SystemUpdater/SystemUpdate17.php b/wire/modules/System/SystemUpdater/SystemUpdate17.php index 359b50b6..7d62e5d2 100644 --- a/wire/modules/System/SystemUpdater/SystemUpdate17.php +++ b/wire/modules/System/SystemUpdater/SystemUpdate17.php @@ -42,8 +42,11 @@ class SystemUpdate17 extends SystemUpdate { public function update() { if(!$this->isApache()) { - $this->warning('Update skipped because Apache not detected'); - $this->warning('Please see the details URL below on how to apply this update manually'); + $this->warning( + "Update skipped because Apache not detected. " . + "Please see this post for details on how to apply this update manually.", + Notice::allowMarkup | Notice::noGroup + ); return true; }