bug #1847409 [security] Path disclosure on darkblue_orange/layout.inc.php

This commit is contained in:
Marc Delisle
2008-01-05 14:30:41 +00:00
parent 603e566c0d
commit 6059c4fc1f
2 changed files with 7 additions and 0 deletions

View File

@@ -55,6 +55,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- patch #1861717 [export] CSV Escape character not exported right, - patch #1861717 [export] CSV Escape character not exported right,
thanks to nicolasdigraf thanks to nicolasdigraf
- bug #1864468 [display] Theme does not switch to darkblue_orange - bug #1864468 [display] Theme does not switch to darkblue_orange
- bug #1847409 [security] Path disclosure on darkblue_orange/layout.inc.php,
thanks to Jürgen Wind - windkiel
2.11.3.0 (2007-12-08) 2.11.3.0 (2007-12-08)
- patch #1818389 to remove a notice (failed to flush buffer), thanks to - patch #1818389 to remove a notice (failed to flush buffer), thanks to

View File

@@ -9,6 +9,11 @@
* @subpackage Darkblue_orange * @subpackage Darkblue_orange
*/ */
// protect against path disclosure
if (empty($_SESSION['PMA_Theme'])) {
exit;
}
/** /**
* navi frame * navi frame
*/ */