Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/controllers/CControllerIconMapCreate.php')
-rw-r--r--ui/app/controllers/CControllerIconMapCreate.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/controllers/CControllerIconMapCreate.php b/ui/app/controllers/CControllerIconMapCreate.php
index a9f8b4078a6..a40b8534e02 100644
--- a/ui/app/controllers/CControllerIconMapCreate.php
+++ b/ui/app/controllers/CControllerIconMapCreate.php
@@ -23,7 +23,7 @@ class CControllerIconMapCreate extends CController {
protected function checkInput() {
$fields = [
- 'iconmap' => 'required | array'
+ 'iconmap' => 'required|array'
];
$ret = $this->validateInput($fields);
@@ -40,17 +40,17 @@ class CControllerIconMapCreate extends CController {
}
protected function doAction() {
- $result = (bool) API::IconMap()->create((array) $this->getInput('iconmap'));
+ $result = (bool) API::IconMap()->create($this->getInput('iconmap'));
if ($result) {
- $response = new CControllerResponseRedirect((new CUrl('zabbix.php'))
- ->setArgument('action', 'iconmap.list')
+ $response = new CControllerResponseRedirect(
+ (new CUrl('zabbix.php'))->setArgument('action', 'iconmap.list')
);
CMessageHelper::setSuccessTitle(_('Icon map created'));
}
else {
- $response = new CControllerResponseRedirect((new CUrl('zabbix.php'))
- ->setArgument('action', 'iconmap.edit')
+ $response = new CControllerResponseRedirect(
+ (new CUrl('zabbix.php'))->setArgument('action', 'iconmap.edit')
);
$response->setFormData($this->getInputAll());
CMessageHelper::setErrorTitle(_('Cannot create icon map'));