Decouple revision.rev_id from text.old_id
[lhc/web/wiklou.git] / includes / SpecialLog.php
index 76cfd5e..f7df7c5 100644 (file)
@@ -260,7 +260,7 @@ class LogViewer {
                $comment = $this->skin->commentBlock( $s->log_comment );
                $paramArray = LogPage::extractParams( $s->log_params );
                
-               $action = LogPage::actionText( $s->log_type, $s->log_action, $titleLink, $paramArray );
+               $action = LogPage::actionText( $s->log_type, $s->log_action, $titleLink, $paramArray, true );
                $out = "<li>$time $userLink $action $comment</li>\n";
                return $out;
        }
@@ -291,7 +291,7 @@ class LogViewer {
                        $this->getTypeMenu() .
                        $this->getUserInput() .
                        $this->getTitleInput() .
-                       "<input type='submit' />" .
+                       "<input type='submit' value=\"" . wfMsg( 'querybtn' ) . "\" />" .
                        "</form>" );
        }