Changeset 444844
- Timestamp:
- 09/28/2011 03:49:41 PM (14 years ago)
- File:
-
- 1 edited
-
debug-bar-query-tracer/trunk/Panel.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debug-bar-query-tracer/trunk/Panel.php
r444752 r444844 11 11 */ 12 12 public function init() { 13 $this->title(__('Query Tracer', 'galahad-query _tracer'));13 $this->title(__('Query Tracer', 'galahad-query-tracer')); 14 14 } 15 15 … … 55 55 foreach ($pluginData['backtrace'] as $filename => $data) { 56 56 $filename = htmlspecialchars($filename); 57 echo "<h3>$filename</h3>57 printf('<h3>%s</h3> 58 58 <table> 59 59 <tr> 60 <th> Line</th>61 <th> Query & Function Chain</th>62 </tr> ";60 <th>%s</th> 61 <th>%s</th> 62 </tr>', htmlspecialchars($filename), __('Line', 'galahad-query-tracer'), __('Query & Function Chain', 'galahad-query-tracer')); 63 63 foreach ($data as $query) { 64 64 $query['query'] = htmlspecialchars($query['query']);
Note: See TracChangeset
for help on using the changeset viewer.