Remove debugging var_dump, add , in message.
[lhc/web/wiklou.git] / skins / MySkin.php
1 <?php
2 /**
3 * MySkin: Monobook without the CSS. The idea is that you
4 * customise it using user or site CSS
5 *
6 * @file
7 * @ingroup Skins
8 */
9
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
12
13 /**
14 * Inherit main code from SkinTemplate, set the CSS and template filter.
15 * @ingroup Skins
16 */
17 class SkinMySkin extends SkinTemplate {
18 var $skinname = 'myskin', $stylename = 'myskin',
19 $template = 'MonoBookTemplate', $useHeadElement = true;
20 }