diff -r edfc24408769 -r 5d003b6c9e89 includes/functions.php --- a/includes/functions.php Sat Jun 23 10:38:24 2007 -0400 +++ b/includes/functions.php Sat Jun 23 18:54:16 2007 -0400 @@ -906,7 +906,14 @@ { ob_start(); echo '
';
-  debug_print_backtrace();
+  if ( function_exists('debug_print_backtrace') )
+  {
+    debug_print_backtrace();
+  }
+  else
+  {
+    echo 'Warning: No debug_print_backtrace() support!';
+  }
   echo '
'; $c = ob_get_contents(); ob_end_clean();