X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffunctions.php;h=96ed81d53fce6b42cc5d3125751ec6d31882fc60;hp=ad2b5a25d1e3433a6e3fff2211c4e3fc46969a31;hb=64d07c28338c2b08687ff394235101c79cd3077f;hpb=1c4a8db23b33255c699124c2f5905695865d1d20 diff --git a/inc/functions.php b/inc/functions.php index ad2b5a25d1..96ed81d53f 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -2714,11 +2714,12 @@ function debug_report_bug ($message = "") { } // END - if // Add output - $debug .= ("Please report this error at bugs.mxchange.org:
");
-	$debug .= (debug_get_printable_backtrace());
-	$debug .= ("
Thank you for your help finding bugs."); + $debug .= "Please report this error at bugs.mxchange.org:
";
+	$debug .= debug_get_printable_backtrace();
+	$debug .= "
Thank you for finding bugs."; // And abort here + // @TODO This cannot be rewritten to mxchange_die(), try to find a solution for this. die($debug); }