Fix #8819: full patch disclosure with skin dependencies.
This commit is contained in:
parent
adbbd43292
commit
90759fa8a1
5 changed files with 17 additions and 4 deletions
|
|
@ -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 ==
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in a new issue