From 97b9e402c538bb80e74375ce04093b1c4284b644 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 26 Oct 2017 11:08:42 -0400 Subject: [PATCH] Check with isset first Need to check to see if this exists. --- controllers/front.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/front.php b/controllers/front.php index 146246bd..73575238 100644 --- a/controllers/front.php +++ b/controllers/front.php @@ -520,7 +520,7 @@ class glmMembersFront extends GlmPluginSupport } // Check if there's also a menu item change - if ($results['menuItemRedirect']) { + if ( isset($results['menuItemRedirect']) && $results['menuItemRedirect']) { $menuItem = $results['menuItemRedirect']; } -- 2.17.1