Index: trunk/extensions/LiquidThreads/classes/LqtView.php |
— | — | @@ -343,14 +343,14 @@ |
344 | 344 | $subject = $this->request->getVal( 'lqt_subject_field', $db_subject ); |
345 | 345 | $subject_label = wfMsg( 'lqt_subject' ); |
346 | 346 | |
347 | | - $disableattr = array(); |
| 347 | + $attr = array( 'tabindex' => 1 ); |
348 | 348 | if ( $thread && !$this->user->isAllowed( 'move' ) ) { |
349 | | - $disableattr = array( 'readonly' => 'readonly' ); |
| 349 | + $attr['readonly'] = 'readonly'; |
350 | 350 | } |
351 | 351 | |
352 | 352 | $e->editFormTextBeforeContent .= |
353 | 353 | Xml::inputLabel( $subject_label, 'lqt_subject_field', 'lqt_subject_field', |
354 | | - 60, $subject, $disableattr ) . Xml::element( 'br' ); |
| 354 | + 60, $subject, $attr ) . Xml::element( 'br' ); |
355 | 355 | } |
356 | 356 | |
357 | 357 | // Quote the original message if we're replying |