
raymond at svn
Nov 24, 2009, 9:31 AM
Post #1 of 1
(155 views)
Permalink
|
|
SVN: [59385] trunk/phase3/includes/EditPage.php
|
|
http://www.mediawiki.org/wiki/Special:Code/MediaWiki/59385 Revision: 59385 Author: raymond Date: 2009-11-24 17:31:06 +0000 (Tue, 24 Nov 2009) Log Message: ----------- Followup r59363: Fix wrong syntax for Html::input. It accept other parameters then Xml::input. Modified Paths: -------------- trunk/phase3/includes/EditPage.php Modified: trunk/phase3/includes/EditPage.php =================================================================== --- trunk/phase3/includes/EditPage.php 2009-11-24 17:25:00 UTC (rev 59384) +++ trunk/phase3/includes/EditPage.php 2009-11-24 17:31:06 UTC (rev 59385) @@ -1420,12 +1420,13 @@ $commentsubject ); $commentsubject .= ' '; $commentsubject .= Html::input( 'wpSummary', - 60, $summarytext, + 'text', array( 'id' => 'wpSummary', 'maxlength' => '200', 'tabindex' => '1', + 'size' => '60', 'spellcheck' => 'true' ) ); } else { @@ -1448,12 +1449,13 @@ $editsummary ) . ' '; $editsummary .= Html::input( 'wpSummary', - 60, $summarytext, + 'text', array( 'id' => 'wpSummary', 'maxlength' => '200', 'tabindex' => '1', + 'size' => '60', 'spellcheck' => 'true' ) ); _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS [at] lists https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|