Fix acknowledge URL of announcements

This commit is contained in:
Eric Lippmann 2017-11-20 13:35:17 +01:00
parent 5aed51b1a2
commit a4249539ec
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ use Icinga\Data\Filter\Filter;
use Icinga\Web\Announcement\AnnouncementCookie;
use Icinga\Web\Announcement\AnnouncementIniRepository;
use Icinga\Web\Form;
use Icinga\Web\Url;
class AcknowledgeAnnouncementForm extends Form
{
@ -15,7 +16,7 @@ class AcknowledgeAnnouncementForm extends Form
*/
public function init()
{
$this->setAction('announcements/acknowledge');
$this->setAction(Url::fromPath('announcements/acknowledge'));
$this->setAttrib('class', 'form-inline acknowledge-announcement-control');
$this->setRedirectUrl('layout/announcements');
}