Index: trunk/extensions/Contest/Contest.i18n.php |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | 'specialpages-group-contest' => 'Contests', |
63 | 63 | |
64 | 64 | // Navigation links |
65 | | - 'contest-nav-contests' => 'Contests list', |
| 65 | + 'contest-nav-contests' => 'Contest list', |
66 | 66 | 'contest-nav-editcontest' => 'Edit contest', |
67 | 67 | 'contest-nav-contest' => 'Summary and participants', |
68 | 68 | 'contest-nav-contestwelcome' => 'Landing page', |
Index: trunk/extensions/Contest/specials/SpecialContestant.php |
— | — | @@ -27,13 +27,16 @@ |
28 | 28 | * |
29 | 29 | * @since 0.1 |
30 | 30 | * |
31 | | - * @param string $arg |
| 31 | + * @param string $subPage |
32 | 32 | */ |
33 | 33 | public function execute( $subPage ) { |
34 | 34 | if ( !parent::execute( $subPage ) ) { |
35 | 35 | return; |
36 | 36 | } |
37 | 37 | |
| 38 | + /** |
| 39 | + * @var $contestant ContestContestant |
| 40 | + */ |
38 | 41 | $contestant = ContestContestant::s()->selectRow( 'id', array( 'id' => (int)$subPage ) ); |
39 | 42 | |
40 | 43 | if ( $contestant === false ) { |