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