16 lines
276 B
PHP
16 lines
276 B
PHP
<?php
|
|
$base_dir = __DIR__;
|
|
|
|
include_once ("$base_dir/../core/config.php");
|
|
include_once ("$base_dir/firewall_library.php");
|
|
|
|
$FW_conf = carica_conf ("Firewall");
|
|
|
|
if ($FW_conf['aggiornamento']) {
|
|
print "Eseguo aggiornamento\n";
|
|
genera();
|
|
disattiva_aggiornamento ();
|
|
}
|
|
|
|
?>
|