Index: trunk/extensions/ServerAdminLog/ServerAdminLogChannel.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | protected $id = 0; |
15 | 15 | |
16 | 16 | /** |
17 | | - * Chanel code |
| 17 | + * Channel code |
18 | 18 | * |
19 | 19 | * @var string |
20 | 20 | */ |
Index: trunk/extensions/ServerAdminLog/ServerAdminLog.i18n.php |
— | — | @@ -28,5 +28,6 @@ |
29 | 29 | |
30 | 30 | // Special:AdminLog |
31 | 31 | 'adminlog' => 'Title at the top of [[Special:AdminLog]]', |
32 | | - 'serveradminlog-invalidchannel' => 'Title of the page in the ' |
| 32 | + 'serveradminlog-invalidchannel' => 'Title of the page when an invalid channel is passed', |
| 33 | + 'serveradminlog-invalidchannel-msg' => 'Message for when an invalid channel is passed', |
33 | 34 | ); |
\ No newline at end of file |
Index: trunk/extensions/ServerAdminLog/ServerAdminLogEntryPager.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | $user = Linker::link( $userPage, htmlspecialchars( $userPage->getText() ) ); |
42 | 42 | } |
43 | 43 | |
44 | | - // Link to the chanel name if the column is there |
| 44 | + // Link to the channel name if the column is there |
45 | 45 | if ( isset( $row->salc_name ) ) { |
46 | 46 | $chanTitle = SpecialPage::getTitleFor( 'AdminLog', $row->salc_code ); |
47 | 47 | $channel = Linker::link( $chanTitle, htmlspecialchars( $row->salc_name ) ); |
Index: trunk/extensions/ServerAdminLog/tables.sql |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | -- Channel definition table |
3 | 3 | CREATE TABLE /*_*/sal_channel ( |
4 | 4 | salc_id int(10) unsigned NOT NULL AUTO_INCREMENT, |
5 | | - -- Code to access the chanel by |
| 5 | + -- Code to access the channel by |
6 | 6 | salc_code varbinary(255) NOT NULL, |
7 | 7 | -- Human readable name |
8 | 8 | salc_name varbinary(255) NOT NULL, |