Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -362,8 +362,11 @@ |
363 | 363 | # Edit/log timestamp |
364 | 364 | $this->insertTimestamp( $s, $rc ); |
365 | 365 | # Bytes added or removed |
366 | | - if( $wgRCShowChangedSize && ($cd = $rc->getCharacterDifference()) ) { |
367 | | - $s .= "$cd . . "; |
| 366 | + if( $wgRCShowChangedSize ) { |
| 367 | + $cd = $rc->getCharacterDifference(); |
| 368 | + if( $cd != '' ) { |
| 369 | + $s .= "$cd . . "; |
| 370 | + } |
368 | 371 | } |
369 | 372 | # User tool links |
370 | 373 | $this->insertUserRelatedLinks($s,$rc); |