IcingaNotification: render "to" after object name

fixes #11924
This commit is contained in:
Thomas Gelf 2016-06-10 12:43:58 +02:00
parent 3b8b41c3f6
commit bbdf981b99
1 changed files with 3 additions and 3 deletions

View File

@ -136,11 +136,11 @@ class IcingaNotification extends IcingaObject
}
return sprintf(
"%s %s to %s %s {\n",
"%s %s %s to %s {\n",
$this->getObjectTypeName(),
$this->getType(),
ucfirst($to),
c::renderString($this->getObjectName())
c::renderString($this->getObjectName()),
ucfirst($to)
);
} else {