patch #1787915 Avoid CSS reloading on every click, thanks to Juergen Wind

This commit is contained in:
Marc Delisle
2007-09-17 16:32:17 +00:00
parent 3ed5d40d65
commit 44e9ee3c35
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
2.11.2.0 (not yet released)
- patch #1787915 Avoid CSS reloading on every click, thanks to Juergen Wind
2.11.1.0 (not yet released)
- bug #1783667 [export] NO_AUTO_VALUE_ON_ZERO and MySQL version

View File

@@ -533,7 +533,8 @@ class PMA_Config
*/
function getMtime()
{
return max($this->source_mtime, $this->default_source_mtime, $this->set_mtime);
return $this->source_mtime + $this->default_source_mtime + $_SESSION['PMA_Theme']->mtime_info;
//"max()" most probably would only returns "source" last modified timestamp.
}
/**