Added options to enable/disable account upgrades and coinpayments

This commit is contained in:
Daniel Winzen
2020-01-11 13:18:50 +01:00
parent a69714bce8
commit 5abb32402d
5 changed files with 15 additions and 8 deletions

View File

@ -1,5 +1,9 @@
<?php
require('../common.php');
if(!ENABLE_UPGRADES || !COINPAYMENTS_ENABLED){
header('Location: home.php');
exit;
}
$user=check_login();
use chillerlan\QRCode\QRCode;
use chillerlan\QRCode\QROptions;