Remove superfluous whitespace from HTML output

Fixing regression caused by
I38dcb7a5389cf6986dc1247b9291bfb1ad3fca7d.

Bug: T102861
Change-Id: Ib8502ae55880fe97992ae471790f08aba8cc5040
This commit is contained in:
Vivek Ghaisas 2015-06-18 01:41:48 +03:00
parent efbc866a11
commit 73f8dcc8b5

View file

@ -112,9 +112,9 @@ class VectorTemplate extends BaseTemplate {
}
if ( !empty( $this->data['title'] ) ) {
?>
<h1 id="firstHeading" class="firstHeading" lang="<?php $this->text( 'pageLanguage' ); ?>">
<?php $this->html( 'title' ) ?>
</h1>
<h1 id="firstHeading" class="firstHeading" lang="<?php $this->text( 'pageLanguage' ); ?>"><?php
$this->html( 'title' )
?></h1>
<?php
} ?>
<?php $this->html( 'prebodyhtml' ) ?>
@ -126,9 +126,9 @@ class VectorTemplate extends BaseTemplate {
<?php
}
?>
<div id="contentSub"<?php $this->html( 'userlangattributes' ) ?>>
<?php $this->html( 'subtitle' ) ?>
</div>
<div id="contentSub"<?php $this->html( 'userlangattributes' ) ?>><?php
$this->html( 'subtitle' )
?></div>
<?php
if ( $this->data['undelete'] ) {
?>
@ -145,9 +145,9 @@ class VectorTemplate extends BaseTemplate {
?>
<div id="jump-to-nav" class="mw-jump">
<?php $this->msg( 'jumpto' ) ?>
<a href="#mw-head">
<?php $this->msg( 'jumptonavigation' ) ?>
</a><?php $this->msg( 'comma-separator' ) ?>
<a href="#mw-head"><?php
$this->msg( 'jumptonavigation' )
?></a><?php $this->msg( 'comma-separator' ) ?>
<a href="#p-search"><?php $this->msg( 'jumptosearch' ) ?></a>
</div>
<?php