From: Jens Frank Date: Sat, 19 Mar 2005 12:04:00 +0000 (+0000) Subject: fix broken sidebar X-Git-Tag: 1.5.0alpha1~574 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=65f73f9a25a4a1777fce2cb76038455fdc470b33;p=lhc%2Fweb%2Fwiklou.git fix broken sidebar --- diff --git a/includes/EditPage.php b/includes/EditPage.php index 11e95a8ac9..0606e2dbb8 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -577,8 +577,8 @@ class EditPage { } } $wgOut->addHTML( '' ); - $wgOut->addHTML( '
' ); if ( 'diff' == $formtype ) { + $wgOut->addHTML( '
' ); require_once( 'DifferenceEngine.php' ); $oldtext = $this->mArticle->getContent( true ); $newtext = $this->textbox1; @@ -592,6 +592,7 @@ class EditPage { $wgOut->addHTML( $difftext ); $wgOut->addHTML( "
\n" ); } + $wgOut->addHTML( '
' ); }