only linkify openids in userlink

Can't use htmllink in userlink due to it being called from recentchanges
in cases where there is no configured url. It seems easist, at least for now,
to not linkify user names in this case. I don't think I've ever clicked on such
a link anyway.

Might revisit this later.
master
Joey Hess 2008-01-28 23:32:36 -05:00
parent 0d2894711c
commit 1b8f1b867c
1 changed files with 2 additions and 4 deletions

View File

@ -90,7 +90,7 @@ sub defaultconfig () { #{{{
adminuser => undef,
adminemail => undef,
plugin => [qw{mdwn inline htmlscrubber passwordauth openid signinedit
lockedit conditional}],
lockedit conditional recentchanges}],
libdir => undef,
timeformat => '%c',
locale => undef,
@ -631,9 +631,7 @@ sub userlink ($) { #{{{
return "<a href=\"$user\">".escapeHTML($display)."</a>";
}
else {
return htmllink("", "", escapeHTML(
length $config{userdir} ? $config{userdir}."/".$user : $user
), noimageinline => 1);
return $user;
}
} #}}}