Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -997,6 +997,14 @@ |
998 | 998 | $outText = ''; |
999 | 999 | $templates = $this->mArticle->getUsedTemplates(); |
1000 | 1000 | if ( count( $templates ) > 0 ) { |
| 1001 | + # Do a batch existence check |
| 1002 | + $batch = new LinkBatch; |
| 1003 | + foreach( $templates as $title ) { |
| 1004 | + $batch->addObj( $title ); |
| 1005 | + } |
| 1006 | + $batch->execute(); |
| 1007 | + |
| 1008 | + # Construct the HTML |
1001 | 1009 | $outText = '<br />'. wfMsg( 'templatesused' ) . '<ul>'; |
1002 | 1010 | foreach ( $templates as $titleObj ) { |
1003 | 1011 | $outText .= '<li>' . $sk->makeLinkObj( $titleObj ) . '</li>'; |