Index: Skin.php =================================================================== RCS file: /cvsroot/wikipedia/phase3/includes/Skin.php,v retrieving revision 1.258 diff -u -r1.258 Skin.php --- Skin.php 22 Aug 2004 08:51:28 -0000 1.258 +++ Skin.php 22 Aug 2004 22:41:03 -0000 @@ -2645,6 +2645,24 @@ $toc."\n"; } + function footLine( $number, $footnote ) { + $foot = ''.$number.'. '.$footnote.'
'; + return $foot; + } + + function footNum( $number, $footnote ) { + return ''.$number.''; + } + + function endNotes ( $footnotes ) { + return + + "\n". + '==Notes==' + ."\n". + $footnotes; + } + # These two do not check for permissions: check $wgTitle->userCanEdit before calling them function editSectionScript( $section, $head ) { global $wgTitle, $wgRequest;