X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/74c929b24b048c9f1e31e17db757ae4195cd7673..d75ce11339b35963b5f8c3d53190819c1c025716:/skins/Nostalgia.php diff --git a/skins/Nostalgia.php b/skins/Nostalgia.php index 2b9b2f67..d4f3f06f 100644 --- a/skins/Nostalgia.php +++ b/skins/Nostalgia.php @@ -1,14 +1,14 @@ \n
\n"; - $s .= "
".$this->logoText( "right" )."
"; + $s .= ''; $s .= $this->pageTitle(); $s .= $this->pageSubtitle() . "\n"; - $s .= "
"; + $s .= '
'; $s .= $this->topLinks() . "\n
"; $notice = wfGetSiteNotice(); @@ -40,13 +41,16 @@ class SkinNostalgia extends Skin { $s .= $this->pageTitleLinks(); $ol = $this->otherLanguages(); - if($ol) $s .= "
" . $ol; + if( $ol ) { + $s .= '
' . $ol; + } $cat = $this->getCategoryLinks(); - if($cat) $s .= "
" . $cat; + if( $cat ) { + $s .= '
' . $cat; + } - $s .= "

\n
\n"; + $s .= "

\n\n"; $s .= "\n
"; return $s; @@ -60,8 +64,7 @@ class SkinNostalgia extends Skin { . $this->specialLink( 'recentchanges' ); if ( $wgOut->isArticle() ) { - $s .= $sep . $this->editThisPage() - . $sep . $this->historyLink(); + $s .= $sep . '' . $this->editThisPage() . '' . $sep . $this->historyLink(); } /* show links to different language variants */ @@ -81,7 +84,7 @@ class SkinNostalgia extends Skin { $s .= $sep . $this->specialLink( 'watchlist' ); /* show my contributions link */ $s .= $sep . $this->link( - SpecialPage::getSafeTitleFor( "Contributions", $wgUser->getName() ), + SpecialPage::getSafeTitleFor( 'Contributions', $wgUser->getName() ), wfMsgHtml( 'mycontris' ) ); /* show my preferences link */ $s .= $sep . $this->specialLink( 'preferences' ); @@ -106,13 +109,11 @@ class SkinNostalgia extends Skin { $s .= $this->bottomLinks(); $s .= "\n
" . $this->pageStats(); $s .= "\n
" . $this->mainPageLink() - . " | " . $this->aboutLink() - . " | " . $this->searchForm(); + . ' | ' . $this->aboutLink() + . ' | ' . $this->searchForm(); $s .= "\n
\n\n"; return $s; } } - -