From c6543d39089fff66170420a05a938eb6cd9693f2 Mon Sep 17 00:00:00 2001 From: Deveosys Date: Mon, 26 Nov 2018 19:59:19 +0100 Subject: [PATCH] Prevent use of " ' " in message and button text --- index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index 0ebaa6d..6c96c16 100644 --- a/index.php +++ b/index.php @@ -95,8 +95,8 @@ 'theme': '$theme', 'position': '$position', 'content': { - 'message': '$message', - 'dismiss': '$dismiss', + 'message': \"$message\", + 'dismiss': \"$dismiss\", 'link': '$policytext', 'href': '$url' } @@ -115,4 +115,4 @@ ['~extensions', 'input-link', 'vue']); }, ], -]; \ No newline at end of file +];