Skip to content

Commit

Permalink
bug #1780098 Logout causes CSS loss
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Sep 2, 2007
1 parent f0f97fe commit f53ba52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -8,6 +8,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
2.11.1.0 (not yet released)

- bug #1783667 [export] NO_AUTO_VALUE_ON_ZERO and MySQL version
- bug #1780098 [GUI] Logout causes CSS loss, thanks to Juergen Wind

2.11.0.0 (2007-08-21)

Expand Down
5 changes: 4 additions & 1 deletion phpmyadmin.css.php
Expand Up @@ -8,6 +8,9 @@
/**
*
*/
// sometimes, we lose $_REQUEST['js_frame']
define('PMA_FRAME',empty($_REQUEST['js_frame']) ? 'right' : $_REQUEST['js_frame']);

define('PMA_MINIMUM_COMMON', true);
require_once './libraries/common.inc.php';
require_once './libraries/sqlparser.lib.php';
Expand Down Expand Up @@ -790,5 +793,5 @@
<?php
} // end styles 2.9

$_SESSION['PMA_Theme_Manager']->printCss($_REQUEST['js_frame']);
$_SESSION['PMA_Theme_Manager']->printCss(PMA_FRAME);
?>

0 comments on commit f53ba52

Please sign in to comment.