diff --git a/src/do_actions.php b/src/do_actions.php index dc01d302..8ce1c3f0 100644 --- a/src/do_actions.php +++ b/src/do_actions.php @@ -264,14 +264,9 @@ while ($rr=$action->get_action()){ } break; default : - $output=array("Fail: Sorry dude, i do not know this type of action"); + $errorsList[]=array("Fail: Sorry, i do not know this type of action: ". $r['type']); break; } - // Get the error (if exists). - if(isset($output[0])){ - $return=$output[0]; - $errorsList[]="\nAction n°".$r["id"]." '".$r["type"]."' failed! With user: ".$r["user"]."\nHere is the complete output:\n".print_r($output); - } // We finished the action, notify the DB. d("Finishing... return value is : $return\n"); if(!$action->finish($r["id"],addslashes($return))){ @@ -290,4 +285,4 @@ if(count($errorsList)) { unlink(ALTERNC_DO_ACTION_LOCK); // Exit this script -exit(0); \ No newline at end of file +exit(0);