From 63187a78c5160cffe8a732ed25d11c07fd66d739 Mon Sep 17 00:00:00 2001 From: Jeremy Rudman Date: Fri, 18 Dec 2020 13:59:23 -0500 Subject: [PATCH] fix(hakiri): fix hakiri error with user input in html_safe --- app/views/doorkeeper/authorizations/error.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/doorkeeper/authorizations/error.html.haml b/app/views/doorkeeper/authorizations/error.html.haml index adcc19217..0260db809 100644 --- a/app/views/doorkeeper/authorizations/error.html.haml +++ b/app/views/doorkeeper/authorizations/error.html.haml @@ -6,5 +6,5 @@ %p = @pre_auth.error_response.body[:error_description] %p - = t('doorkeeper.errors.messages.get_help', hackathon_name: content_tag(:strong, class: 'text-info') { HackathonConfig['name'] }).html_safe + = t('doorkeeper.errors.messages.get_help', hackathon_name: HackathonConfig['name'])