fix: [bug] Fixed cryptic ##COMMA## in error message

pull/3530/head
iglocska 2018-07-31 23:41:36 +02:00
parent 6be128bb99
commit 6a8e40cba9
1 changed files with 1 additions and 1 deletions

View File

@ -2712,7 +2712,7 @@ class Server extends AppModel
return $this->testForEmpty($value);
}
if ($value != strtolower($this->getProto()) . '://' . $this->getHost()) {
return 'critical_error##COMMA##block';
return 'Invalid baseurl, it has to be in the "https://FQDN" format.';
}
return true;
}