(bug 18533) Add readonly reason to readonly exception
[mediawiki.git] / includes / specials / SpecialUncategorizedtemplates.php
blobcb2a6d40f3e3a7c094c9fdef20bb715c2ef0ff7c
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
8 * Special page lists all uncategorised pages in the
9 * template namespace
11 * @ingroup SpecialPage
12 * @author Rob Church <robchur@gmail.com>
14 class UncategorizedTemplatesPage extends UncategorizedPagesPage {
16 var $requestedNamespace = NS_TEMPLATE;
18 public function getName() {
19 return 'Uncategorizedtemplates';
24 /**
25 * Main execution point
27 * @param mixed $par Parameter passed to the page
29 function wfSpecialUncategorizedtemplates() {
30 list( $limit, $offset ) = wfCheckLimits();
31 $utp = new UncategorizedTemplatesPage();
32 $utp->doQuery( $offset, $limit );