Index: trunk/phase3/includes/LogEventsList.php |
— | — | @@ -220,7 +220,9 @@ |
221 | 221 | * @return String: Formatted HTML |
222 | 222 | */ |
223 | 223 | 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>'; |
225 | 227 | } |
226 | 228 | |
227 | 229 | /** |
— | — | @@ -228,7 +230,9 @@ |
229 | 231 | * @return String: Formatted HTML |
230 | 232 | */ |
231 | 233 | 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>'; |
233 | 237 | } |
234 | 238 | |
235 | 239 | /** |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -561,6 +561,7 @@ |
562 | 562 | * (bug 21114) Special:Contributions no longer shows diff links for new revisions |
563 | 563 | * (bug 21116) MediaWiki:Templatesused, MediaWiki:Templatesusedpreview and |
564 | 564 | MediaWiki:Templatesusedsection now support plural |
| 565 | +* (bug 21079) There is no more line wrapping between label and field in Special:Log |
565 | 566 | |
566 | 567 | == API changes in 1.16 == |
567 | 568 | |