From: Roland Häder Date: Mon, 9 Mar 2009 17:24:11 +0000 (+0000) Subject: Added request URI to debug_report_bug() function X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=7c466b2a7483de4706228b320550a62662ef18bb Added request URI to debug_report_bug() function --- diff --git a/inc/functions.php b/inc/functions.php index a515308c03..43eac3f8f3 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -2750,9 +2750,10 @@ function debug_report_bug ($message = "") { } // END - if // Add output - $debug .= "Please report this error at bugs.mxchange.org:
";
+	$debug .= "Please report this bug at bugs.mxchange.org:
";
 	$debug .= debug_get_printable_backtrace();
-	$debug .= "
Thank you for finding bugs."; + $debug .= "
Request-URI: ".$_SERVER['REQUEST_URI']."
\n"; + $debug .= "Thank you for finding bugs."; // And abort here // @TODO This cannot be rewritten to mxchange_die(), try to find a solution for this.