Index: trunk/extensions/LiquidThreads/pages/ThreadActionPage.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | |
6 | 6 | function __construct() { |
7 | 7 | parent::__construct( $this->getPageName(), $this->getRightRequirement() ); |
8 | | - $this->includable( false ); |
| 8 | + $this->mIncludable = false; |
9 | 9 | |
10 | 10 | global $wgOut, $wgUser, $wgRequest; |
11 | 11 | $this->output = $wgOut; |
Index: trunk/extensions/LiquidThreads/pages/SpecialNewMessages.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | |
7 | 7 | function __construct() { |
8 | 8 | parent::__construct( 'NewMessages' ); |
9 | | - $this->includable( true ); |
| 9 | + $this->mIncludable = true; |
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |