finally found the reason for the li bug, top a now in skin

This commit is contained in:
Gabriel Wicke 2004-04-07 16:12:18 +00:00
parent d591a9f771
commit 3fba40b06c

View file

@ -426,7 +426,7 @@ class Parser
$text = $wgDateFormatter->reformat( $this->mOptions->getDateFormat(), $text );
}
$text = ' '.$this->replaceExternalLinks( $text );
$text = $this->replaceExternalLinks( $text );
$text = $this->doTokenizedParser ( $text );
$text = $this->doTableStuff ( $text ) ;
@ -974,7 +974,6 @@ class Parser
# and making lists from lines starting with * # : etc.
#
$a = explode( "\n", $text );
$a[0] = "\n".$a[0];
$lastPref = $text = '';
$this->mDTopen = $inBlockElem = false;
@ -1591,8 +1590,8 @@ class Parser
}
$full .= $block;
if( $doShowToc && !$i) {
# Let's add a top anchor just in case we want to link to the top of the page
$full = "<a name=\"top\"></a>".$full.$toc;
# Top anchor now in skin
$full = $full.$toc;
}
if( !empty( $head[$i] ) ) {