mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-04-30 18:42:43 +02: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' );
|
|
}
|
|
}
|
|
?>
|