fix for several problems found by Eloquence:
[lhc/web/wiklou.git] / includes / SpecialNeglectedpages.php
1 <?php
2 /**
3 * Suggestion from mailing list: lists pages in order
4 * least recently reviewed.
5 *
6 * @package MediaWiki
7 * @subpackage SpecialPage
8 * @todo code it !
9 */
10
11 /**
12 *
13 */
14 function wfSpecialNeglectedpages() {
15 global $wgUser, $wgOut;
16
17 $wgOut->addHTML( "<p>(TODO: neglected pages)" );
18 }
19
20 ?>