We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1bc16b commit c8b85e1Copy full SHA for c8b85e1
1 file changed
system/Debug/Toolbar/Views/_config.tpl.php
@@ -23,7 +23,7 @@
23
<tr>
24
<td>Base URL:</td>
25
<td>
26
- { if baseURL == '' }
+ { if $baseURL == '' }
27
<div class="warning">
28
The $baseURL should always be set manually to prevent possible URL personification from external parties.
29
</div>
@@ -42,12 +42,12 @@
42
</tr>
43
44
<td>Content Security Policy Enabled:</td>
45
- <td>{ if cspEnabled } Yes { else } No { endif }</td>
+ <td>{ if $cspEnabled } Yes { else } No { endif }</td>
46
47
48
<td>Salt Set?:</td>
49
50
- { if salt == '' }
+ { if $salt == '' }
51
52
You have not defined an application-wide $salt. This could lead to a less secure site.
53
0 commit comments