The cache buster is generating a hash from several changing properties: ``` $pluginList = md5(implode(",", !$pluginNames ? Manager::getInstance()->getLoadedPluginsName() : $pluginNames)); $cacheBuster = md5(SettingsPiwik::getSalt() . $pluginList . PHP_VERSION . Version::VERSION . trim($currentGitHash)); ``` Things to note: - md5 is used twice - SettingsPiwik::getSalt() is a static value.
The cache buster is generating a hash from several changing properties:
Things to note: