14 lines
453 B
PHP
14 lines
453 B
PHP
|
<?php
|
||
|
if (!defined('SVRJS_MOD_DIRECTORY')) die;
|
||
|
$pageTitle = "Mod discarding not allowed";
|
||
|
$pageDescription = "Mod discarding not allowed";
|
||
|
include 'header.php';
|
||
|
?>
|
||
|
<main class="content">
|
||
|
<h1>Mod discarding not allowed</h1>
|
||
|
<p>You are not allowed to discard this mod.</p>
|
||
|
<p><a href="<?php echo htmlspecialchars(URL_REWRITTEN ? APP_ROOT : APP_ROOT . APP_FILENAME . '/') ?>" class="btn">Return to home</a></p>
|
||
|
</main>
|
||
|
<?php
|
||
|
include 'footer.php';
|
||
|
?>
|