Changeset 645518
- Timestamp:
- 12/28/2012 07:54:38 PM (13 years ago)
- File:
-
- 1 edited
-
debug-this/trunk/_inc/debug-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
debug-this/trunk/_inc/debug-template.php
r645511 r645518 23 23 24 24 #Render the entire page to buffer to process to log all actions and filters 25 $debug = print_r(do_action('debug_this', Debug_This::$mode), true); 25 ob_start(); 26 do_action('debug_this', Debug_This::$mode); 27 $debug = ob_get_contents(); 28 ob_get_clean(); 26 29 $html = str_replace('%DEBUG%', $debug, $html); 27 30 echo $html;
Note: See TracChangeset
for help on using the changeset viewer.