Changeset 645521
- Timestamp:
- 12/28/2012 08:02:19 PM (13 years ago)
- File:
-
- 1 edited
-
debug-this/trunk/_inc/debug-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debug-this/trunk/_inc/debug-template.php
r645518 r645521 1 1 <?php 2 2 defined('ABSPATH') || die(); 3 4 #Render the entire page to buffer to process to log all actions and filters 3 5 ob_start();?> 4 6 <!doctype html> … … 22 24 ob_get_clean(); 23 25 24 #Render the entire page to buffer to process to log all actions and filters26 #Render debug_this action buffer 25 27 ob_start(); 26 28 do_action('debug_this', Debug_This::$mode); 27 29 $debug = ob_get_contents(); 28 30 ob_get_clean(); 31 32 #Output HTML with included $debug markup 29 33 $html = str_replace('%DEBUG%', $debug, $html); 30 34 echo $html;
Note: See TracChangeset
for help on using the changeset viewer.