From 3e079efe2a6ce582371a541910cbf2cd6825394d Mon Sep 17 00:00:00 2001
From: Alexander Klimov <alexander.klimov@netways.de>
Date: Tue, 19 Aug 2014 14:51:30 +0200
Subject: [PATCH] SecurityForm: replace `customvars' with
 `protected_customvars'

refs #6641
---
 .../monitoring/application/forms/Config/SecurityForm.php    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/monitoring/application/forms/Config/SecurityForm.php b/modules/monitoring/application/forms/Config/SecurityForm.php
index 51b64dea0..288c00b9c 100644
--- a/modules/monitoring/application/forms/Config/SecurityForm.php
+++ b/modules/monitoring/application/forms/Config/SecurityForm.php
@@ -23,11 +23,11 @@ class SecurityForm extends Form
     {
         $this->addElement(
             'text',
-            'customvars',
+            'protected_customvars',
             array(
                 'label'     =>  'Protected Custom Variables',
                 'required'  =>  true,
-                'value'     =>  $this->config->customvars
+                'value'     =>  $this->config->protected_customvars
             )
         );
         $this->setSubmitLabel('{{SAVE_ICON}} Save');
@@ -50,7 +50,7 @@ class SecurityForm extends Form
     {
         $values = $this->getValues();
         return new Zend_Config(array(
-            'customvars' => $values['customvars']
+            'protected_customvars' => $values['protected_customvars']
         ));
     }
 }