blue-twilight/public/raw/sg-license-error.php

13 lines
232 B
PHP

<?php
function btw_license_error($code, $message)
{
header(sprintf('Location: license-required.php?licerror=%d', $code));
exit();
}
function btw_loader_error()
{
header('Location: loader-required.php');
exit();
}
?>