r49589 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r49588‎ | r49589 | r49590 >
Date:23:58, 16 April 2009
Author:tparscal
Status:deferred
Tags:
Comment:
Removed unwanted nowrap attributes.
Modified paths:
  • /trunk/extensions/Drafts/Drafts.classes.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Drafts/Drafts.classes.php
@@ -206,7 +206,7 @@
207207 );
208208 $wgOut->addHTML(
209209 Xml::element( 'th',
210 - array( 'nowrap' => 'nowrap' ),
 210+ null,
211211 wfMsg( 'drafts-view-saved' )
212212 )
213213 );
@@ -253,7 +253,7 @@
254254 // Build XML
255255 $wgOut->addHTML( Xml::openElement( 'tr' ) );
256256 $wgOut->addHTML(
257 - Xml::openElement( 'td', array( 'nowrap' => 'nowrap' ) )
 257+ Xml::openElement( 'td' )
258258 );
259259 $wgOut->addHTML(
260260 Xml::element( 'a',
@@ -271,14 +271,12 @@
272272 $wgOut->addHTML( Xml::closeElement( 'td' ) );
273273 $wgOut->addHTML(
274274 Xml::element( 'td',
275 - array( 'nowrap' => 'nowrap' ),
 275+ null,
276276 $wgLang->timeanddate( $draft->getSaveTime() )
277277 )
278278 );
279279 $wgOut->addHTML(
280 - Xml::openElement( 'td',
281 - array( 'nowrap' => 'nowrap' )
282 - )
 280+ Xml::openElement( 'td' )
283281 );
284282 $jsClick = "if( wgDraft.getState() !== 'unchanged' )" .
285283 "return confirm('" .

Status & tagging log