From 54a246f1e0141187564b63f84f5d40633228dc63 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 17 Jun 2011 17:13:43 +0000 Subject: [PATCH] In wfBacktrcae(): print "->" or "::" whether the function was called dynamically or statically instead of always "::" --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 4bd58090aa..f1b6ce90c0 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1416,7 +1416,7 @@ function wfBacktrace() { $msg .= '
  • ' . $file . ' line ' . $line . ' calls '; } if( !empty( $call['class'] ) ) { - $msg .= $call['class'] . '::'; + $msg .= $call['class'] . $call['type']; } $msg .= $call['function'] . '()'; -- 2.20.1