]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/DeadEndPages.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / DeadEndPages.php
1 <?php
2
3 /**
4  * This file is part of PhpWiki.
5  *
6  * PhpWiki is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * PhpWiki is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 /**
22  * Alias for OrphanedPages. Idea and name from Mediawiki.
23  **/
24
25 require_once 'lib/plugin/OrphanedPages.php';
26
27 class WikiPlugin_DeadEndPages
28     extends WikiPlugin_OrphanedPages
29 {
30 }
31
32 // Local Variables:
33 // mode: php
34 // tab-width: 8
35 // c-basic-offset: 4
36 // c-hanging-comment-ender-p: nil
37 // indent-tabs-mode: nil
38 // End: