From ff9776712834a6ab62bfbdeb1a2e2d1e795cc6b2 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Wed, 30 Mar 2016 13:28:07 -0400 Subject: [PATCH] Fixed missing actionFound parameter update. --- controllers/admin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controllers/admin.php b/controllers/admin.php index 6504bd4a..7a3388af 100644 --- a/controllers/admin.php +++ b/controllers/admin.php @@ -343,6 +343,8 @@ class glmMembersAdmin extends GlmPluginSupport trigger_error ( "ERROR: The specified class naeme doesn't exist. ($className)", E_USER_ERROR); } + $actionFound = true; + // Instantiate the model and ask it to perform the work $model = new $className($this->wpdb, $this->config); $model->modelAction(); -- 2.17.1