From c8b85e13a9b7ca9f8fddd428cb69e26791fe272a Mon Sep 17 00:00:00 2001 From: Lonnie Ezell Date: Sun, 19 Aug 2018 22:49:40 -0500 Subject: [PATCH] Update toolbar templates for new parser conditionals. --- system/Debug/Toolbar/Views/_config.tpl.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/Debug/Toolbar/Views/_config.tpl.php b/system/Debug/Toolbar/Views/_config.tpl.php index b05ce5f7775f..ae4baed2ec06 100644 --- a/system/Debug/Toolbar/Views/_config.tpl.php +++ b/system/Debug/Toolbar/Views/_config.tpl.php @@ -23,7 +23,7 @@ Base URL: - { if baseURL == '' } + { if $baseURL == '' }
The $baseURL should always be set manually to prevent possible URL personification from external parties.
@@ -42,12 +42,12 @@ Content Security Policy Enabled: - { if cspEnabled } Yes { else } No { endif } + { if $cspEnabled } Yes { else } No { endif } Salt Set?: - { if salt == '' } + { if $salt == '' }
You have not defined an application-wide $salt. This could lead to a less secure site.