Fixed local path disclosure vulnerability, see PMASA-2011-15
This commit is contained in:
@@ -22,6 +22,7 @@ phpMyAdmin - ChangeLog
|
|||||||
- bug #3414744 [core] External link fails in 3.4.5
|
- bug #3414744 [core] External link fails in 3.4.5
|
||||||
- patch #3314626 [display] CharTextareaRows is not respected
|
- patch #3314626 [display] CharTextareaRows is not respected
|
||||||
- bug #3417089 [synchronize] Extraneous db choices
|
- bug #3417089 [synchronize] Extraneous db choices
|
||||||
|
- [security] Fixed local path disclosure vulnerability, see PMASA-2011-15
|
||||||
|
|
||||||
3.4.5.0 (2011-09-14)
|
3.4.5.0 (2011-09-14)
|
||||||
- bug #3375325 [interface] Page list in navigation frame looks odd
|
- bug #3375325 [interface] Page list in navigation frame looks odd
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
// sometimes, we lose $_REQUEST['js_frame']
|
// sometimes, we lose $_REQUEST['js_frame']
|
||||||
define('PMA_FRAME', empty($_REQUEST['js_frame']) ? 'right' : $_REQUEST['js_frame']);
|
define('PMA_FRAME', (! empty($_REQUEST['js_frame']) && is_string($_REQUEST['js_frame'])) ? $_REQUEST['js_frame'] : 'right');
|
||||||
|
|
||||||
define('PMA_MINIMUM_COMMON', true);
|
define('PMA_MINIMUM_COMMON', true);
|
||||||
require_once './libraries/common.inc.php';
|
require_once './libraries/common.inc.php';
|
||||||
|
Reference in New Issue
Block a user