From: Brion Vibber Date: Mon, 3 Dec 2007 16:41:16 +0000 (+0000) Subject: Revert r28020; unnecessary since LinkBatch change in 28113 X-Git-Tag: 1.31.0-rc.0~50577 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=728fe6ad4b69456ae89c21107523e02edd1878c6;p=lhc%2Fweb%2Fwiklou.git Revert r28020; unnecessary since LinkBatch change in 28113 --- diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 3832346937..9ff4637cd7 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -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 ); } }