@@ -5,23 +5,23 @@ |
||
5 | 5 | |
6 | 6 | <a href="javascript:Blackbar.switchPanel('glbb-console')" class="glbb-console"><?= $consoleLabel; ?></a> |
7 | 7 | <div id="glbb-console" class="glbb-debug-panel"> |
8 | - <?php $blackbar->render( 'panels/console', array( 'entries' => $consoleEntries )); ?> |
|
8 | + <?php $blackbar->render( 'panels/console', array( 'entries' => $consoleEntries ) ); ?> |
|
9 | 9 | </div> |
10 | 10 | |
11 | 11 | <a href="javascript:Blackbar.switchPanel('glbb-profiler')" class="glbb-profiler"><?= $profilerLabel; ?></a> |
12 | 12 | <div id="glbb-profiler" class="glbb-debug-panel"> |
13 | - <?php $blackbar->render( 'panels/profiler', array( 'profiler' => $profiler )); ?> |
|
13 | + <?php $blackbar->render( 'panels/profiler', array( 'profiler' => $profiler ) ); ?> |
|
14 | 14 | </div> |
15 | 15 | |
16 | 16 | <a href="javascript:Blackbar.switchPanel('glbb-queries')" class="glbb-queries"><?= $queriesLabel; ?></a> |
17 | 17 | <div id="glbb-queries" class="glbb-debug-panel"> |
18 | - <?php $blackbar->render( 'panels/queries', array( 'queries' => $queries )); ?> |
|
18 | + <?php $blackbar->render( 'panels/queries', array( 'queries' => $queries ) ); ?> |
|
19 | 19 | </div> |
20 | 20 | |
21 | 21 | <?php if( !is_admin() ) : ?> |
22 | 22 | <a href="javascript:Blackbar.switchPanel('glbb-templates')" class="glbb-templates"><?= __( 'Templates', 'blackbar' ); ?></a> |
23 | 23 | <div id="glbb-templates" class="glbb-debug-panel"> |
24 | - <?php $blackbar->render( 'panels/templates', array( 'templates' => $templates )); ?> |
|
24 | + <?php $blackbar->render( 'panels/templates', array( 'templates' => $templates ) ); ?> |
|
25 | 25 | </div> |
26 | 26 | <?php endif; ?> |
27 | 27 |