patch #1611684 additionnal change

This commit is contained in:
Marc Delisle
2007-01-12 18:41:38 +00:00
parent bdbcf3ceaa
commit 827f929eb8
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,9 @@ $HeadURL$
2007-01-12 Marc Delisle <lem9@users.sourceforge.net> 2007-01-12 Marc Delisle <lem9@users.sourceforge.net>
* (many files): Designer, two features (snap to grid / display field) * (many files): Designer, two features (snap to grid / display field)
thanks to Ivan Kirillov thanks to Ivan Kirillov
* libraries/Theme_Manager.class.php: patch #1611684, force a change
of a session variable to avoid phpmyadmin.css.php caching problems,
thanks to Christian Schmidt
2007-01-11 Marc Delisle <lem9@users.sourceforge.net> 2007-01-11 Marc Delisle <lem9@users.sourceforge.net>
* lang/estonian: Update, thanks to Marko Ellermaa - uhuu * lang/estonian: Update, thanks to Marko Ellermaa - uhuu

View File

@@ -197,6 +197,9 @@ class PMA_Theme_Manager {
{ {
PMA_setCookie($this->getThemeCookieName(), $this->theme->id, PMA_setCookie($this->getThemeCookieName(), $this->theme->id,
$this->theme_default); $this->theme_default);
// force a change of a dummy session variable to avoid problems
// with the caching of phpmyadmin.css.php
$_SESSION['PMA_Config']->set('theme-update', $this->theme->id);
return true; return true;
} }