From 1b8f1b867c25c5287926ca538c1b04dbfc17f033 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 28 Jan 2008 23:32:36 -0500 Subject: [PATCH] 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. --- IkiWiki.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/IkiWiki.pm b/IkiWiki.pm index 15402211f..b326dbdb8 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -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 "".escapeHTML($display).""; } else { - return htmllink("", "", escapeHTML( - length $config{userdir} ? $config{userdir}."/".$user : $user - ), noimageinline => 1); + return $user; } } #}}} -- 2.39.2