Index: trunk/extensions/WikiBhasha/WikiBhashaSpecial.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | /* |
5 | 5 | * |
6 | 6 | * We need to overload the special page constructor to initialize our own data also if we want to change the behavior of the SpecialPage class itself. |
7 | | -* it will ececute when called from the child class |
| 7 | +* it will execute when called from the child class |
8 | 8 | * |
9 | 9 | */ |
10 | 10 | |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | * @param $par Parameters passed to the page |
23 | 23 | */ |
24 | 24 | function execute( $par ) { |
25 | | - global $wgRequest, $wgOut; |
| 25 | + global $wgOut; |
26 | 26 | $this->setHeaders(); |
27 | 27 | $wgOut->addHTML( '<h2>message goes here</h2>' ); |
28 | 28 | } |
Index: trunk/extensions/WikiBhasha/WikiBhasha.alias.php |
— | — | @@ -2,7 +2,8 @@ |
3 | 3 | |
4 | 4 | /* |
5 | 5 | * |
6 | | -* It allows the page title to be translated to another language. The page title can be customized into another language, the URL of the page would still be something like .../Special:WikiBhasha, even when the user language is not English. |
| 6 | +* It allows the page title to be translated to another language. The page title can be customized into another language, |
| 7 | + * the URL of the page would still be something like .../Special:WikiBhasha, even when the user language is not English. |
7 | 8 | * |
8 | 9 | */ |
9 | 10 | |