Same for $this->user
[lhc/web/wiklou.git] / includes / SpecialRecentchangeslinked.php
index ffb0a4d..ee01dfa 100644 (file)
@@ -25,12 +25,12 @@ function wfSpecialRecentchangeslinked( $par = NULL ) {
        $sk = $wgUser->getSkin();
 
        if (is_null($target)) {
-               $wgOut->errorpage( 'notargettitle', 'notargettext' );
+               $wgOut->showErrorPage( 'notargettitle', 'notargettext' );
                return;
        }
        $nt = Title::newFromURL( $target );
        if( !$nt ) {
-               $wgOut->errorpage( 'notargettitle', 'notargettext' );
+               $wgOut->showErrorPage( 'notargettitle', 'notargettext' );
                return;
        }
        $id = $nt->getArticleId();
@@ -68,7 +68,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) {
 
        $GROUPBY = "
        GROUP BY rc_cur_id,rc_namespace,rc_title,
-               rc_user,rc_comment,rc_user_text,rc_timestamp,rc_minor,rc_deleted,
+               rc_user,rc_comment,rc_user_text,rc_timestamp,rc_minor,rc_log_type,rc_log_action,rc_params,rc_deleted,
                rc_new, rc_id, rc_this_oldid, rc_last_oldid, rc_bot, rc_patrolled, rc_type, rc_old_len, rc_new_len
 " . ($uid ? ",wl_user" : "") . "
                ORDER BY rc_timestamp DESC
@@ -76,7 +76,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) {
 
        // If target is a Category, use categorylinks and invert from and to
        if( $nt->getNamespace() == NS_CATEGORY ) {
-               $catkey = $dbr->addQuotes( $nt->getDBKey() );
+               $catkey = $dbr->addQuotes( $nt->getDBkey() );
                $sql = "SELECT /* wfSpecialRecentchangeslinked */
                                rc_id,
                                rc_cur_id,
@@ -95,6 +95,9 @@ function wfSpecialRecentchangeslinked( $par = NULL ) {
                                rc_type,
                                rc_old_len,
                                rc_new_len,
+                               rc_log_type,
+                               rc_log_action,
+                               rc_params,
                                rc_deleted
 " . ($uid ? ",wl_user" : "") . "
            FROM $categorylinks, $recentchanges
@@ -125,6 +128,9 @@ $GROUPBY
                        rc_type,
                        rc_old_len,
                        rc_new_len,
+                       rc_log_type,
+                       rc_log_action,
+                       rc_params,
                        rc_deleted
 " . ($uid ? ",wl_user" : "") . "
    FROM $pagelinks, $recentchanges
@@ -167,7 +173,7 @@ $GROUPBY
                        $rchanges[] = $obj;
                }
        } else {
-               $wgOut->addWikiText( wfMsg('recentchangeslinked-noresult') );
+               $wgOut->addWikiMsg('recentchangeslinked-noresult');
        }
        $s .= $list->endRecentChangesList();