summaryrefslogtreecommitdiff
path: root/src/web/helper/error.php
blob: 2b6959e212c69ce5b8773b2b8c52d21f538adfde (plain)
1
2
3
4
5
6
7
8
9
<?php /* Copyright (c) 2024 Freya Murphy */

function error_page($code, $msg) {
	$root = $GLOBALS['webroot'];
	error_reporting(E_ERROR | E_PARSE);
	http_response_code($code);
	require($root . '/_views/template/error.php');
	die();
}