Index: trunk/phase3/includes/logging/LogFormatter.php |
— | — | @@ -171,6 +171,7 @@ |
172 | 172 | */ |
173 | 173 | public function getIRCActionText() { |
174 | 174 | $this->plaintext = true; |
| 175 | + $this->irctext = true; |
175 | 176 | $text = $this->getActionText(); |
176 | 177 | |
177 | 178 | $entry = $this->entry; |
— | — | @@ -250,6 +251,7 @@ |
251 | 252 | break; |
252 | 253 | } |
253 | 254 | break; |
| 255 | + |
254 | 256 | |
255 | 257 | // case 'suppress' --private log -- aaron (sign your messages so we know who to blame in a few years :-D) |
256 | 258 | // default: |
— | — | @@ -522,7 +524,11 @@ |
523 | 525 | ); |
524 | 526 | |
525 | 527 | $performer = $this->getPerformerElement(); |
526 | | - return $performer . $this->msg( 'word-separator' )->text() . $action; |
| 528 | + if ( !$this->irctext ) { |
| 529 | + $action = $performer . $this->msg( 'word-separator' )->text() . $action; |
| 530 | + } |
| 531 | + |
| 532 | + return $action; |
527 | 533 | } |
528 | 534 | |
529 | 535 | } |