r57857 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r57856‎ | r57857 | r57858 >
Date:08:29, 17 October 2009
Author:ialex
Status:ok
Tags:
Comment:
* (bug 21079) There is no more line wrapping between label and field in Special:Log
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/LogEventsList.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/LogEventsList.php
@@ -220,7 +220,9 @@
221221 * @return String: Formatted HTML
222222 */
223223 private function getUserInput( $user ) {
224 - return Xml::inputLabel( wfMsg( 'specialloguserlabel' ), 'user', 'mw-log-user', 15, $user );
 224+ return '<span style="white-space: nowrap">' .
 225+ Xml::inputLabel( wfMsg( 'specialloguserlabel' ), 'user', 'mw-log-user', 15, $user ) .
 226+ '</span>';
225227 }
226228
227229 /**
@@ -228,7 +230,9 @@
229231 * @return String: Formatted HTML
230232 */
231233 private function getTitleInput( $title ) {
232 - return Xml::inputLabel( wfMsg( 'speciallogtitlelabel' ), 'page', 'mw-log-page', 20, $title );
 234+ return '<span style="white-space: nowrap">' .
 235+ Xml::inputLabel( wfMsg( 'speciallogtitlelabel' ), 'page', 'mw-log-page', 20, $title ) .
 236+ '</span>';
233237 }
234238
235239 /**
Index: trunk/phase3/RELEASE-NOTES
@@ -561,6 +561,7 @@
562562 * (bug 21114) Special:Contributions no longer shows diff links for new revisions
563563 * (bug 21116) MediaWiki:Templatesused, MediaWiki:Templatesusedpreview and
564564 MediaWiki:Templatesusedsection now support plural
 565+* (bug 21079) There is no more line wrapping between label and field in Special:Log
565566
566567 == API changes in 1.16 ==
567568

Status & tagging log