Re-implement r54638 in a higher-level way. Allows extensions to modify selection...
[lhc/web/wiklou.git] / includes / specials / SpecialRandomredirect.php
1 <?php
2
3 /**
4 * Special page to direct the user to a random redirect page (minus the second redirect)
5 *
6 * @ingroup SpecialPage
7 * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
8 * @license GNU General Public Licence 2.0 or later
9 */
10 class SpecialRandomredirect extends RandomPage {
11 function __construct(){
12 parent::__construct( 'Randomredirect' );
13 $this->isRedir = true;
14 }
15
16 }