diff options
author | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-05-23 19:35:12 +0200 |
---|---|---|
committer | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-05-23 21:20:42 +0200 |
commit | aad9d5fd6bb106fb66a2e960f3f6fd021bdf1547 (patch) | |
tree | f750f6bfc602b06a28e5b946e732c8c1342f4c49 /includes/Skin.php | |
parent | eea4ecefa74f1b8e886cbcc571d2da42475a80b3 (diff) | |
download | mediawikicore-aad9d5fd6bb106fb66a2e960f3f6fd021bdf1547.tar.gz mediawikicore-aad9d5fd6bb106fb66a2e960f3f6fd021bdf1547.zip |
Removed checks for the "MEDIAWIKI" constant on files that only define classes.
This checks are not needed in that case.
Change-Id: Ia83447427de8b7ea32aced8ff43c7a252b8d504c
Diffstat (limited to 'includes/Skin.php')
-rw-r--r-- | includes/Skin.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/includes/Skin.php b/includes/Skin.php index 677664ae5ad7..64cf56979629 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -24,10 +24,6 @@ * @defgroup Skins Skins */ -if ( !defined( 'MEDIAWIKI' ) ) { - die( 1 ); -} - /** * The main skin class that provide methods and properties for all other skins. * This base class is also the "Standard" skin. |