release 1.3.12

This commit is contained in:
Newcomer1989
2020-09-22 18:56:47 +02:00
parent 3ab200784d
commit 3a333716a2
54 changed files with 845 additions and 1195 deletions

15
stats/_footer.php Normal file
View File

@@ -0,0 +1,15 @@
<?PHP
if ($cfg['stats_imprint_switch'] == "1") {
if($cfg['stats_imprint_address_url'] != NULL) {
echo '<footer><a href="',$cfg['stats_imprint_address_url'],'" target="_blank">',$lang['imprint'],'</a>';
} else {
echo '<footer><a href="imprint.php">',$lang['imprint'],'</a>';
}
if($cfg['stats_imprint_privacypolicy_url'] != NULL) {
echo '&nbsp;•&nbsp;<a href="',$cfg['stats_imprint_privacypolicy_url'],'" target="_blank">',$lang['privacy'],'</a>';
} elseif($cfg['stats_imprint_privacypolicy'] != NULL) {
echo '&nbsp;•&nbsp;<a href="privacy_policy.php">',$lang['privacy'],'</a>';
}
echo '</footer>';
}
?>