mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
13 lines
266 B
PHP
13 lines
266 B
PHP
<?php
|
|
if (! defined('MULTIVIEW_CONTROLLER') )
|
|
{
|
|
if (pwg_get_session_var( 'purge_template', 0 ))
|
|
{
|
|
global $template;
|
|
$template->delete_compiled_templates();
|
|
FileCombiner::clear_combined_files();
|
|
pwg_unset_session_var( 'purge_template' );
|
|
}
|
|
}
|
|
?>
|