Files
matrix-register-bot/functions.php

14 lines
193 B
PHP

<?php
function abort($msg="Unknown")
{
header("403 Forbidden");
$response = array(
"success" => false,
"message" => $msg
);
echo json_encode($response);
print("\n");
exit();
}
?>