15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
if (!defined('_ECRIRE_INC_VERSION')) return;
|
|
|
|
function action_gamutable_cache_dist(){
|
|
|
|
include_spip('inc/autoriser');
|
|
if (! autoriser("webmestre")) {
|
|
return false;
|
|
}
|
|
|
|
// Cache
|
|
include_spip('inc/invalideur');
|
|
suivre_invalideur("gamutable");
|
|
|
|
}
|