Removed debug text (1's) from getGitBranch() and an echo in admin controller.
authorChuck Scott <cscott@gaslightmedia.com>
Thu, 27 Sep 2018 19:01:51 +0000 (15:01 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Thu, 27 Sep 2018 19:01:51 +0000 (15:01 -0400)
classes/glmPluginSupport.php
controllers/admin.php [changed mode: 0644->0755]

index 42d1e27..3db6196 100755 (executable)
@@ -168,7 +168,7 @@ return; // Off for now ** Need to make this switchable in management
                     if (isset($gitParts[2])) {
                         $gitBranch[$a['slug']]['branch'] = $gitParts[2];
                     }
-                    echo 1;
+
                     // [3] should be name of feature
                     if (isset($gitParts[3])) {
                         $gitBranch[$a['slug']]['feature'] = $gitParts[3];
old mode 100644 (file)
new mode 100755 (executable)
index 205a6a6..7e5bfc2
@@ -322,7 +322,6 @@ class glmMembersAdmin extends GlmPluginSupport
         // Check if no matching action found
         if (!$actionFound) {
             $err = 'ERROR: The specified action is not valid - '.$glmAction;
-            echo $err;
             trigger_error ( $err, E_USER_ERROR);
         }
 
@@ -729,6 +728,7 @@ class glmMembersAdmin extends GlmPluginSupport
      */
     public function controller( $menuItem, $action = false, $actionData = false, $returnOutput = false, $forceAction = false )
     {
+
         if (GLM_MEMBERS_PLUGIN_ADMIN_DEBUG) {
             trigger_error(glmAssociateMemoryUsage()." - Start Admin Controller, Menu = $menuItem, Action = $action",E_USER_NOTICE);
             trigger_error(glmAssociateTimeTracker()." - Start Admin Controller",E_USER_NOTICE);