From c87b51d4c0e82bf6ba047656c68c0c4588f5642e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20Pe=CC=81rez=20Crespo?= <jaime.perez@uninett.no>
Date: Mon, 25 Dec 2017 20:51:24 +0100
Subject: [PATCH] Use double quotes instead of single ones to build HTML code.

---
 modules/consent/templates/consentform.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/consent/templates/consentform.php b/modules/consent/templates/consentform.php
index e5e7d4aef..d9be45d32 100644
--- a/modules/consent/templates/consentform.php
+++ b/modules/consent/templates/consentform.php
@@ -124,7 +124,7 @@ foreach ($this->data['noData'] as $name => $value) {
 <?php
 if ($this->data['sppp'] !== false) {
     echo "<p>" . htmlspecialchars($this->t('{consent:consent:consent_privacypolicy}')) . " ";
-    echo "<a target='_blank' href='" . htmlspecialchars($this->data['sppp']) . "'>" . $dstName . "</a>";
+    echo '<a target="_blank" href="' . htmlspecialchars($this->data['sppp']) . '">' . $dstName . "</a>";
     echo "</p>";
 }
 
-- 
GitLab