Commit 8c5df984 authored by Emmanuel Gil Peyrot's avatar Emmanuel Gil Peyrot Committed by JC Brand

Make user JID a link in user details.

parent 6e26f8b5
......@@ -103634,9 +103634,11 @@ __e(o.fullname) +
} ;
__p += '\n <p><label>' +
__e(o.__('XMPP Address:')) +
'</label>&nbsp;' +
'</label>&nbsp;<a href="xmpp:' +
__e(o.jid) +
'</p>\n ';
'">' +
__e(o.jid) +
'</a></p>\n ';
if (o.nickname) { ;
__p += '\n <p><label>' +
__e(o.__('Nickname:')) +
......@@ -14,7 +14,7 @@
{[ if (o.fullname) { ]}
<p><label>{{{o.__('Full Name:')}}}</label>&nbsp;{{{o.fullname}}}</p>
{[ } ]}
<p><label>{{{o.__('XMPP Address:')}}}</label>&nbsp;{{{o.jid}}}</p>
<p><label>{{{o.__('XMPP Address:')}}}</label>&nbsp;<a href="xmpp:{{{o.jid}}}">{{{o.jid}}}</a></p>
{[ if (o.nickname) { ]}
<p><label>{{{o.__('Nickname:')}}}</label>&nbsp;{{{o.nickname}}}</p>
{[ } ]}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment