Changeset 21119
- Timestamp:
- 06/26/2012 03:02:13 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.4/wp-includes/functions.php
r20715 r21119 3623 3623 */ 3624 3624 function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) { 3625 $trace = debug_backtrace( false ); 3625 if ( version_compare( PHP_VERSION, '5.2.5', '>=' ) ) 3626 $trace = debug_backtrace( false ); 3627 else 3628 $trace = debug_backtrace(); 3629 3626 3630 $caller = array(); 3627 3631 $check_class = ! is_null( $ignore_class );
Note: See TracChangeset
for help on using the changeset viewer.