Fix Special:Import for new schema; make it create page records as needed and hook...
[lhc/web/wiklou.git] / includes / PageHistory.php
index 744de13..66ed592 100644 (file)
@@ -194,10 +194,7 @@ class PageHistory {
                $s .= $isminor ? ' <span class="minor">'.$message['minoreditletter'].'</span>': '' ;
 
 
-               if ( '' != $c && '*' != $c ) {
-                       $c = $this->mSkin->formatcomment( $c, $this->mTitle );
-                       $s .= " <em>($c)</em>";
-               }
+               $s .= $this->mSkin->commentBlock( $c, $this->mTitle );
                if ($notificationtimestamp && ($ts >= $notificationtimestamp)) {
                        $s .= wfMsg( 'updatedmarker' );
                }