Skip to content

Commit

Permalink
Update toolbar templates for new parser conditionals.
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Aug 20, 2018
1 parent c1bc16b commit c8b85e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions system/Debug/Toolbar/Views/_config.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<tr>
<td>Base URL:</td>
<td>
{ if baseURL == '' }
{ if $baseURL == '' }
<div class="warning">
The $baseURL should always be set manually to prevent possible URL personification from external parties.
</div>
Expand All @@ -42,12 +42,12 @@
</tr>
<tr>
<td>Content Security Policy Enabled:</td>
<td>{ if cspEnabled } Yes { else } No { endif }</td>
<td>{ if $cspEnabled } Yes { else } No { endif }</td>
</tr>
<tr>
<td>Salt Set?:</td>
<td>
{ if salt == '' }
{ if $salt == '' }
<div class="warning">
You have not defined an application-wide $salt. This could lead to a less secure site.
</div>
Expand Down

0 comments on commit c8b85e1

Please sign in to comment.