1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-15 03:05:26 +02:00
This commit is contained in:
Ryan Cramer
2020-01-20 08:37:12 -05:00
parent 6bc706742e
commit 57540cfab2

View File

@@ -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 <a href='$this->detailsUrl' target='_blank'>see this post</a> for details on how to apply this update manually.",
Notice::allowMarkup | Notice::noGroup
);
return true;
}