Index: trunk/phase3/includes/SpecialLog.php |
— | — | @@ -252,9 +252,12 @@ |
253 | 253 | $batch = new LinkBatch; |
254 | 254 | while ( $s = $result->fetchObject() ) { |
255 | 255 | // User link |
256 | | - $title = Title::makeTitleSafe( NS_USER, $s->user_name ); |
257 | | - $batch->addObj( $title ); |
| 256 | + $batch->addObj( Title::makeTitleSafe( NS_USER, $s->user_name ) ); |
| 257 | + $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $s->user_name ) ); |
258 | 258 | |
| 259 | + // Page the action was performed on |
| 260 | + $batch->addObj( Title::makeTitleSafe( $s->log_namespace, $s->log_title ) ); |
| 261 | + |
259 | 262 | // Move destination link |
260 | 263 | if ( $s->log_type == 'move' ) { |
261 | 264 | $paramArray = LogPage::extractParams( $s->log_params ); |