From d577153eededf4f48cc0b84d4cc997385e19af9b Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 10 Dec 2019 14:47:59 +0100 Subject: [PATCH] CommandActions: Set missing title when rescheduling service checks --- library/Icingadb/Common/CommandActions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Icingadb/Common/CommandActions.php b/library/Icingadb/Common/CommandActions.php index 433c4b97..08ef440f 100644 --- a/library/Icingadb/Common/CommandActions.php +++ b/library/Icingadb/Common/CommandActions.php @@ -190,6 +190,7 @@ trait CommandActions $this->handleCommandForm(ScheduleHostCheckCommandForm::class); break; case 'service': + $this->setTitle($this->translate('Reschedule Service Check')); $this->handleCommandForm(ScheduleServiceCheckCommandForm::class); break; }