[ Create a new account ]
Not sure about slash 2.2.6, but I think that what you are looking for in the slash cvs version is in parseDomainTags in Data.pm.
Change $html =~ s{</A ([^>]+)>}{</A> [$1]}gi; to $html =~ s{</A ([^>]+)>}{</a> [$1]}gi;
And change $html =~ s{</A[^>]+>}{</A>}gi; to $html =~ s{</A[^>]+>}{</a>}gi;
Get More Comments
To get the lowercase.. (Score:1)
Not sure about slash 2.2.6, but I think that what you are looking for in the slash cvs version is in parseDomainTags in Data.pm.
Change
$html =~ s{</A ([^>]+)>}{</A> [$1]}gi;
to
$html =~ s{</A ([^>]+)>}{</a> [$1]}gi;
And change
$html =~ s{</A[^>]+>}{</A>}gi;
to
$html =~ s{</A[^>]+>}{</a>}gi;