remove server_cache and client_cache

This commit is contained in:
Milan
2023-02-26 23:00:14 +01:00
parent 9c2cb45047
commit 66ee4ce41e
5 changed files with 1 additions and 14 deletions

View File

@@ -223,10 +223,6 @@ sub render($$$$) {
$template_parameters->{event_id} = $params->{event_id};
$template_parameters->{event_start} = $params->{event_start};
$template_parameters->{server_cache} = $config->{cache}->{server_cache} if ( $config->{cache}->{server_cache} );
$template_parameters->{use_client_cache} = $config->{cache}->{use_client_cache}
if ( $config->{cache}->{use_client_cache} );
$template_parameters->{controllers} = $config->{controllers};
template::process( $config, $_[0], $params->{template}, $template_parameters );
}