Add RELEASE-NOTES for 33269, fix another one.
[mediawiki.git] / includes / SpecialUncategorizedtemplates.php
blob83b29c5e6c19a497c692d1ab5d1d2ce1d923f4e5
1 <?php
3 /**
4 * Special page lists all uncategorised pages in the
5 * template namespace
7 * @addtogroup SpecialPage
8 * @author Rob Church <robchur@gmail.com>
9 */
10 class UncategorizedTemplatesPage extends UncategorizedPagesPage {
12 var $requestedNamespace = NS_TEMPLATE;
14 public function getName() {
15 return 'Uncategorizedtemplates';
20 /**
21 * Main execution point
23 * @param mixed $par Parameter passed to the page
25 function wfSpecialUncategorizedtemplates() {
26 list( $limit, $offset ) = wfCheckLimits();
27 $utp = new UncategorizedTemplatesPage();
28 $utp->doQuery( $offset, $limit );