taking modification time of api/etemplate.php script into account too for .xet cache-buster

This commit is contained in:
ralf 2022-02-16 20:14:38 +02:00
parent c81183f5f6
commit e3113455cc

View File

@ -214,7 +214,8 @@ class Template extends Etemplate\Widget
{
return $GLOBALS['egw_info']['server']['webserver_url'].'/api/etemplate.php'.
($path[0] === '/' ? $path : preg_replace('#^'.self::VFS_TEMPLATE_PATH.'#', '',
Api\Vfs::parse_url($path, PHP_URL_PATH))).'?'.filemtime(self::rel2path($path));
Api\Vfs::parse_url($path, PHP_URL_PATH))).'?'.
max(filemtime(self::rel2path($path)), filemtime(EGW_SERVER_ROOT.'/api/etemplate.php'));
}
/**
@ -286,4 +287,4 @@ if ($GLOBALS['egw_info']['flags']['debug'] == 'etemplate_widget_template')
header('Content-Type: text/xml');
echo $template->toXml();
}
*/
*/