diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-01 15:49:23 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-01 15:49:23 +0000 |
| commit | 2a882bc85b360c8d261260727ac165f3c566449c (patch) | |
| tree | 85ab145799feee98c90d7650ec00bc6b038ad256 /roundcubemail/plugins | |
| parent | c5dcd563e8f3ff616bbc3bd5be890b8595c1ed8a (diff) | |
- fix debug_backtrace() call for PHP < 5.2.5
git-svn-id: https://svn.roundcube.net/trunk@2906 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins')
| -rw-r--r-- | roundcubemail/plugins/debug_logger/debug_logger.php | 2 |
1 files changed, 1 insertions, 1 deletions
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': |
