13 lines
372 B
PHP
13 lines
372 B
PHP
<?php if (!defined('IN_APP')) die() ?><!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="referrer" content="never">
|
|
<title>Error</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/error.css">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<div id="error"><?php echo $this->message ?></div>
|
|
</body>
|
|
</html>
|