From 899f078c5be1ce44317419847bf6788f3fb3ffbc Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Mon, 15 Aug 2016 10:46:53 -0400 Subject: [PATCH] The GLM_MEMBERS_WORDPRESS_PLUGIN_PATH parameter already has a / at the end, but it was being followed by an added / causing // to occur. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 720972e9..dc7e79ed 100644 --- a/index.php +++ b/index.php @@ -329,7 +329,7 @@ if (glmCheckDatabase('install')) { } // If the add-on has additional config parameters in a plugin.ini file - $iniFile = GLM_MEMBERS_WORDPRESS_PLUGIN_PATH.'/'.$a['slug'].'/config/plugin.ini'; + $iniFile = GLM_MEMBERS_WORDPRESS_PLUGIN_PATH.$a['slug'].'/config/plugin.ini'; if (isset($iniFile)) { // Parse the add-on's configuration file -- 2.17.1