From 057ea83aa59bdd1ebce82d45278b389c5c024ffc Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 16 Jun 2016 22:42:56 +0200 Subject: [PATCH] IcingaCommandArgumentForm: fix redirect on store fixes #11523 --- application/forms/IcingaCommandArgumentForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/forms/IcingaCommandArgumentForm.php b/application/forms/IcingaCommandArgumentForm.php index 03ca4ed4..62b7534e 100644 --- a/application/forms/IcingaCommandArgumentForm.php +++ b/application/forms/IcingaCommandArgumentForm.php @@ -122,8 +122,8 @@ class IcingaCommandArgumentForm extends DirectorObjectForm $msg = $this->translate('No action taken, object has not been modified'); } $this->setSuccessUrl( - 'director/director/command', - array('name' => $cmd->argument_name) + 'director/command/arguments', + array('name' => $cmd->object_name) ); $this->redirectOnSuccess($msg);