Index: trunk/extensions/LiquidThreads/pages/NewUserMessagesView.php |
— | — | @@ -60,11 +60,14 @@ |
61 | 61 | } |
62 | 62 | |
63 | 63 | function postDivClass( $thread ) { |
| 64 | + $origClass = parent::postDivClass( $thread ); |
| 65 | + |
64 | 66 | $topid = $thread->topmostThread()->id(); |
| 67 | + |
65 | 68 | if ( in_array( $thread->id(), $this->targets[$topid] ) ) |
66 | | - return 'lqt_post_new_message'; |
67 | | - else |
68 | | - return 'lqt_post'; |
| 69 | + return "$origClass lqt_post_new_message"; |
| 70 | + |
| 71 | + return $origClass; |
69 | 72 | } |
70 | 73 | |
71 | 74 | function showOnce() { |