Fix #8819: full patch disclosure with skin dependencies.
authorAntoine Musso <hashar@users.mediawiki.org>
Mon, 29 Jan 2007 21:15:34 +0000 (21:15 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Mon, 29 Jan 2007 21:15:34 +0000 (21:15 +0000)
RELEASE-NOTES
skins/Chick.deps.php
skins/MonoBook.deps.php
skins/MySkin.deps.php
skins/Simple.deps.php

index c1b05d6..b0223e1 100644 (file)
@@ -154,6 +154,7 @@ lighter making things easier to read.
 * Fix multipage selector drop-down for DjVu images to work when title
   is passed as a query string parameter; we have to pass the title as
   a form parameter or it gets dropped from the form submission URL
+* (bug 8819) Fix full path disclosure in with skins dependencies
 
 
 == Languages updated ==
index 273ac18..a178a79 100644 (file)
@@ -5,6 +5,9 @@
 // changed on a subsequent page view.
 // see http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
 
+if ( ! defined( 'MEDIAWIKI' ) )
+       die( 1 );
+
 require_once('includes/SkinTemplate.php');
 require_once('MonoBook.php');
-?>
\ No newline at end of file
+?>
index 8a78ae6..b054c84 100644 (file)
@@ -5,5 +5,8 @@
 // changed on a subsequent page view.
 // see http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
 
+if ( ! defined( 'MEDIAWIKI' ) )
+       die( 1 );
+
 require_once('includes/SkinTemplate.php');
-?>
\ No newline at end of file
+?>
index ea0455f..ba00558 100644 (file)
@@ -5,6 +5,9 @@
 // changed on a subsequent page view.
 // see http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
 
+if ( ! defined( 'MEDIAWIKI' ) )
+       die( 1 );
+
 require_once('includes/SkinTemplate.php');
 require_once('MonoBook.php');
-?>
\ No newline at end of file
+?>
index ffc5155..369f6b0 100644 (file)
@@ -5,6 +5,9 @@
 // changed on a subsequent page view.
 // see http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
 
+if ( ! defined( 'MEDIAWIKI' ) )
+       die( 1 );
+
 require_once('includes/SkinTemplate.php');
 require_once('MonoBook.php');
-?>
\ No newline at end of file
+?>