Index: branches/REL1_18/phase3/includes/specials/SpecialAllmessages.php |
— | — | @@ -405,12 +405,12 @@ |
406 | 406 | } |
407 | 407 | |
408 | 408 | function getCellAttrs( $field, $value ){ |
409 | | - if( $field != 'am_title' ) { |
410 | | - return array( 'lang' => $this->langcode, 'dir' => $this->lang->getDir() ); |
411 | | - } elseif( $this->mCurrentRow->am_customised && $field == 'am_title' ) { |
| 409 | + if( $this->mCurrentRow->am_customised && $field == 'am_title' ){ |
412 | 410 | return array( 'rowspan' => '2', 'class' => $field ); |
| 411 | + } else if( $field == 'am_title' ) { |
| 412 | + return array( 'class' => $field ); |
413 | 413 | } else { |
414 | | - return array( 'class' => $field ); |
| 414 | + return array( 'lang' => $this->langcode, 'dir' => $this->lang->getDir(), 'class' => $field ); |
415 | 415 | } |
416 | 416 | } |
417 | 417 | |