summaryrefslogtreecommitdiff
path: root/web/helper/error.php
blob: 6fcaddd740a4a97d57b49168a6f0864c048b8552 (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();
}