mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
16 lines
343 B
PHP
16 lines
343 B
PHP
<?php
|
|
require('../../common.php');
|
|
require(SYSTEM . 'functions.php');
|
|
require(SYSTEM . 'init.php');
|
|
|
|
if(!$config['signature_enabled'])
|
|
die('Signatures disabled.');
|
|
|
|
$file = strtolower($config['signature_type']) . '.php';
|
|
if(!file_exists($file))
|
|
die('ERROR: Wrong signature type in config.');
|
|
|
|
$cacheMinutes = 5;
|
|
require($file);
|
|
?>
|