fix mislabeled method call in configure_tool.php confirmChange, a=chris

Chris Pollett [2014-06-15 23:Jun:th]
fix mislabeled method call in configure_tool.php confirmChange, a=chris
Filename
configs/configure_tool.php
diff --git a/configs/configure_tool.php b/configs/configure_tool.php
index 350276283..4dc19eb7d 100644
--- a/configs/configure_tool.php
+++ b/configs/configure_tool.php
@@ -462,8 +462,7 @@ class ConfigureTool
                         break;
                     }
                 }
-                if(in_array($COMPONENT_ACTIVITIES["accountaccess"]) )
-                $data = $this->admin->$component->$admin_method();
+                $data = $this->admin->component($component)->$admin_method();
                 $_SERVER = array();
                 $_SESSION = array();
                 $_REQUEST = array();
ViewGit