--- lib/TWiki.pm.r17489 2008-08-18 22:31:15.000000000 +0200 +++ lib/TWiki.pm 2008-09-09 19:20:13.000000000 +0200 @@ -2061,5 +2061,10 @@ # create linked bullet item, using a relative link to anchor my $target = $isSameTopic ? - _make_params(0, '#'=>$anchor,@qparams) : + # NB this used to be "_make_params(0, '#'=>$anchor,@qparams)", but that's not + # needed here; in fact, by prepending/encoding @qparams which contain, e.g., + # 'skin' and 'sortcol' parameters, the page would actually get *reloaded.* + # The only purpose for those relative links is to scroll down the ready-rendered + # page, therefore the parameters cannot be of use at all, can they??? + '#' . $anchor : $this->getScriptUrl(0,'view',$web,$topic,'#'=>$anchor,@qparams); $line = $tabs.'* ' . CGI::a({href=>$target},$line);