Index: trunk/phase3/docs/skin.txt |
— | — | @@ -76,9 +76,9 @@ |
77 | 77 | MediaWiki extension, enabled via LocalSettings.php. This is done by adding |
78 | 78 | it to $wgValidSkinNames, for example: |
79 | 79 | |
80 | | -$wgValidSkinNames['mycoolskin'] = 'My cool skin'; |
| 80 | +$wgValidSkinNames['mycoolskin'] = 'MyCoolSkin'; |
81 | 81 | |
82 | | -and then registering a class in $wgAutoloadClasses called SkinMycoolskin, which |
| 82 | +and then registering a class in $wgAutoloadClasses called SkinMycoolSkin, which |
83 | 83 | derives from Skin. This technique is apparently not yet used (as of 2008) |
84 | 84 | outside the DumpHTML extension. |
85 | 85 | |