r59385 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r59384‎ | r59385 | r59386 >
Date:17:31, 24 November 2009
Author:raymond
Status:ok
Tags:
Comment:
Followup r59363: Fix wrong syntax for Html::input. It accept other parameters then Xml::input.
Modified paths:
  • /trunk/phase3/includes/EditPage.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/EditPage.php
@@ -1420,12 +1420,13 @@
14211421 $commentsubject );
14221422 $commentsubject .= ' ';
14231423 $commentsubject .= Html::input( 'wpSummary',
1424 - 60,
14251424 $summarytext,
 1425+ 'text',
14261426 array(
14271427 'id' => 'wpSummary',
14281428 'maxlength' => '200',
14291429 'tabindex' => '1',
 1430+ 'size' => '60',
14301431 'spellcheck' => 'true'
14311432 ) );
14321433 } else {
@@ -1448,12 +1449,13 @@
14491450 $editsummary ) . ' ';
14501451
14511452 $editsummary .= Html::input( 'wpSummary',
1452 - 60,
14531453 $summarytext,
 1454+ 'text',
14541455 array(
14551456 'id' => 'wpSummary',
14561457 'maxlength' => '200',
14571458 'tabindex' => '1',
 1459+ 'size' => '60',
14581460 'spellcheck' => 'true'
14591461 ) );
14601462

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r59363Further followup to r59360...reedy19:16, 23 November 2009

Status & tagging log