From cdad73442f2c059e4493d2c36a22a949ce4c4f6d Mon Sep 17 00:00:00 2001 From: Christian Cordiviola Date: Tue, 4 Feb 2025 15:51:29 +0100 Subject: [PATCH] fix email share link --- www/include/social_meta_vars.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/include/social_meta_vars.inc b/www/include/social_meta_vars.inc index 4e8c9bec04..14463a9ae9 100644 --- a/www/include/social_meta_vars.inc +++ b/www/include/social_meta_vars.inc @@ -14,4 +14,4 @@ $socialTitle = isset($socialTitle) ? $socialTitle : "WebPageTest"; $socialDesc = isset($socialDesc) ? $socialDesc : "View this on WebPageTest.org..."; $emailSubject = "View this on WebPageTest!"; $tweetURI = 'https://twitter.com/intent/tweet?text=' . urlencode($socialDesc) . '&url=' . urlencode($pageURI) . '&via=realwebpagetest'; -$emailURI = 'mailto:?subject=' . rawurlencode(htmlspecialchars_decode($emailSubject)) . '&body=' . rawurlencode(htmlspecialchars_decode($socialDesc)) . ' %0D%0A ' . urlencode($pageURI); +$emailURI = 'mailto:?subject=' . rawurlencode(htmlspecialchars_decode($emailSubject)) . '&body=' . rawurlencode(htmlspecialchars_decode($socialDesc) . ' %0D%0A ') . $pageURI; \ No newline at end of file