mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +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' );
|
||
|
}
|
||
|
}
|
||
|
?>
|