Slight fix for r47781: remove useless if($index) conditional: $index is always set...
[lhc/web/wiklou.git] / includes / specials / SpecialBlankpage.php
1 <?php
2
3 function wfSpecialBlankpage() {
4 global $wgOut;
5 $wgOut->addWikiMsg('intentionallyblankpage');
6 }