Merge pull request #3105 from Icinga/fix/announcements-ack-url

Fix acknowledge URL of announcements
This commit is contained in:
lippserd 2017-11-20 13:36:14 +01:00 committed by GitHub
commit 745674dbe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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');
}