svrjs-mods-directory/includes/moderation_notallowed.php
2024-12-27 15:05:54 +01:00

14 lines
No EOL
387 B
PHP

<?php
if (!defined('SVRJS_MOD_DIRECTORY')) die;
if (!defined('SVRJS_MOD_DIRECTORY_MODERATION')) die;
$moderationNotAllowed = true;
$pageTitle = "Not allowed";
include 'moderation_header.php';
?>
<h1>Not allowed</h1>
<p>You don't have permissions to moderate.</p>
<p><a href="<?php echo htmlspecialchars(APP_ROOT); ?>" class="btn">Return</a></p>
<?php
include 'moderation_footer.php';
?>