Encode url before passing it to Icinga\Form\Dashboard\AddUrlForm
fixes #6611
This commit is contained in:
parent
b5d6481c12
commit
666591beb7
|
@ -28,7 +28,7 @@ class DashboardAction implements Tabextension
|
|||
'title' => 'Add To Dashboard',
|
||||
'url' => Url::fromPath('dashboard/addurl'),
|
||||
'urlParams' => array(
|
||||
'url' => Url::fromRequest()->getRelativeUrl()
|
||||
'url' => rawurlencode(Url::fromRequest()->getRelativeUrl())
|
||||
)
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue