From 3419e0e17e2034c65c0e761f09ccfd10438ca0e0 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 21 Jan 2020 20:30:39 +0000 Subject: [PATCH] Hyperlinks for email and xmpp --- webinterface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webinterface.py b/webinterface.py index 612a63be0..dc0d81342 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1566,7 +1566,7 @@ def htmlProfile(defaultTimeline: str, \ if donateUrl: donateSection+='

\n' if emailAddress: - donateSection+='

'+translate['Email']+': '+emailAddress+'

\n' + donateSection+='

'+translate['Email']+': '+emailAddress+'

\n' if xmppAddress: donateSection+='

'+translate['XMPP']+': '+xmppAddress+'

\n' if matrixAddress: @@ -3441,9 +3441,9 @@ def htmlPersonOptions(translate: {},baseDir: str, \ optionsStr+=' ' optionsStr+='

'+translate['Options for']+' @'+getNicknameFromActor(optionsActor)+'@'+optionsDomain+'

' if emailAddress: - optionsStr+='

'+translate['Email']+': '+emailAddress+'

' + optionsStr+='

'+translate['Email']+': '+emailAddress+'

' if xmppAddress: - optionsStr+='

'+translate['XMPP']+': '+xmppAddress+'

' + optionsStr+='

'+translate['XMPP']+': '+xmppAddress+'

' if matrixAddress: optionsStr+='

'+translate['Matrix']+': '+matrixAddress+'

' if PGPpubKey: