diff --git a/ChangeLog b/ChangeLog index 541ea04c40..307f1a4e9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/libraries/Config.class.php b/libraries/Config.class.php index b6f0969775..ddaff47bee 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -543,7 +543,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. } /**