From 2a882bc85b360c8d261260727ac165f3c566449c Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 1 Sep 2009 15:49:23 +0000 Subject: - fix debug_backtrace() call for PHP < 5.2.5 git-svn-id: https://svn.roundcube.net/trunk@2906 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/plugins/debug_logger/debug_logger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/plugins/debug_logger/debug_logger.php b/roundcubemail/plugins/debug_logger/debug_logger.php index 8cd335187..f04ba6a61 100644 --- a/roundcubemail/plugins/debug_logger/debug_logger.php +++ b/roundcubemail/plugins/debug_logger/debug_logger.php @@ -107,7 +107,7 @@ class debug_logger extends rcube_plugin if(!isset($args[1])){ // This could be extended to detect types based on the // file which called console. For now only rcube_imap.inc is supported - $bt = debug_backtrace(true); + $bt = debug_backtrace(); $file = $bt[3]['file']; switch(basename($file)){ case 'rcube_imap.php': -- cgit v1.2.3