Index: trunk/phase3/includes/specials/SpecialNewpages.php |
— | — | @@ -222,42 +222,42 @@ |
223 | 223 | Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . |
224 | 224 | Xml::fieldset( wfMsg( 'newpages' ) ) . |
225 | 225 | Xml::openElement( 'table', array( 'id' => 'mw-newpages-table' ) ) . |
226 | | - "<tr> |
227 | | - <td class='mw-label'>" . |
| 226 | + '<tr> |
| 227 | + <td class="mw-label">' . |
228 | 228 | Xml::label( wfMsg( 'namespace' ), 'namespace' ) . |
229 | | - "</td> |
230 | | - <td class='mw-input'>" . |
| 229 | + '</td> |
| 230 | + <td class="mw-input">' . |
231 | 231 | Xml::namespaceSelector( $namespace, 'all' ) . |
232 | | - "</td> |
233 | | - </tr>" . ( $tagFilter ? ( |
234 | | - "<tr> |
235 | | - <td class='mw-label'>" . |
| 232 | + '</td> |
| 233 | + </tr>' . ( $tagFilter ? ( |
| 234 | + '<tr> |
| 235 | + <td class="mw-label">' . |
236 | 236 | $tagFilterLabel . |
237 | | - "</td> |
238 | | - <td class='mw-input'>" . |
| 237 | + '</td> |
| 238 | + <td class="mw-input">' . |
239 | 239 | $tagFilterSelector . |
240 | | - "</td> |
241 | | - </tr>" ) : '' ) . |
| 240 | + '</td> |
| 241 | + </tr>' ) : '' ) . |
242 | 242 | ( $wgEnableNewpagesUserFilter ? |
243 | | - "<tr> |
244 | | - <td class='mw-label'>" . |
| 243 | + '<tr> |
| 244 | + <td class="mw-label">' . |
245 | 245 | Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) . |
246 | | - "</td> |
247 | | - <td class='mw-input'>" . |
| 246 | + '</td> |
| 247 | + <td class="mw-input">' . |
248 | 248 | Xml::input( 'username', 30, $userText, array( 'id' => 'mw-np-username' ) ) . |
249 | | - "</td> |
250 | | - </tr>" : '' ) . |
251 | | - "<tr> <td></td> |
252 | | - <td class='mw-submit'>" . |
| 249 | + '</td> |
| 250 | + </tr>' : '' ) . |
| 251 | + '<tr> <td></td> |
| 252 | + <td class="mw-submit">' . |
253 | 253 | Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . |
254 | | - "</td> |
255 | | - </tr>" . |
256 | | - "<tr> |
| 254 | + '</td> |
| 255 | + </tr>' . |
| 256 | + '<tr> |
257 | 257 | <td></td> |
258 | | - <td class='mw-input'>" . |
| 258 | + <td class="mw-input">' . |
259 | 259 | $this->filterLinks() . |
260 | | - "</td> |
261 | | - </tr>" . |
| 260 | + '</td> |
| 261 | + </tr>' . |
262 | 262 | Xml::closeElement( 'table' ) . |
263 | 263 | Xml::closeElement( 'fieldset' ) . |
264 | 264 | $hidden . |