remove redundant link munge

This is not needed now that tagpage returns a page name starting with a
slash.

(Also fixes a minor bug that the edit links started with double slashes due
to the hack.)
master
Joey Hess 2008-11-10 21:47:29 -05:00
parent 6049fac46e
commit 53752bcb5d
1 changed files with 1 additions and 7 deletions

View File

@ -56,13 +56,7 @@ sub taglink ($$$;@) { #{{{
my $tag=shift;
my %opts=@_;
my $link=tagpage($tag);
# Force tag creation links to create the tag under /tagbase,
# if there is a tagbase and this tag used it.
$link="/".$link if $tag ne $link;
return htmllink($page, $destpage, $link, %opts);
return htmllink($page, $destpage, tagpage($tag), %opts);
} #}}}
sub preprocess_tag (@) { #{{{