1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-16 03:34:33 +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() { public function update() {
if(!$this->isApache()) { if(!$this->isApache()) {
$this->warning('Update skipped because Apache not detected'); $this->warning(
$this->warning('Please see the details URL below on how to apply this update manually'); "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; return true;
} }