Correct link for Rule, Location (Alerts, and several other pages) (#11937)

- wherever generate_url is used
- does not address hostname (device), separate PR for that
This commit is contained in:
arrmo
2020-07-17 08:32:30 -05:00
committed by GitHub
parent 0e96589879
commit c1418c12af

View File

@@ -277,7 +277,7 @@ class Url
{
$vars = array_merge($vars, $new_vars);
$url = url($vars['page'] . '');
$url = url(Config::get('base_url', true) . $vars['page'] . '');
unset($vars['page']);
return $url . self::urlParams($vars);