Revert r28020; unnecessary since LinkBatch change in 28113
authorBrion Vibber <brion@users.mediawiki.org>
Mon, 3 Dec 2007 16:41:16 +0000 (16:41 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Mon, 3 Dec 2007 16:41:16 +0000 (16:41 +0000)
includes/SpecialRecentchanges.php

index 3832346..9ff4637 100644 (file)
@@ -173,8 +173,8 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                $rows[] = $row;
                if ( !$feedFormat ) {
                        // User page and talk links
-                       $batch->add( NS_USER, str_replace( ' ', '_', $row->rc_user_text ) );
-                       $batch->add( NS_USER_TALK, str_replace( ' ', '_', $row->rc_user_text ) );
+                       $batch->add( NS_USER, $row->rc_user_text  );
+                       $batch->add( NS_USER_TALK, $row->rc_user_text  );
                }
 
        }