forked from nightflyza/Ubilling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
executable file
·40 lines (40 loc) · 1.55 KB
/
error.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
////////////////////////////////////////////////////////////////////////////////
// Copyright (C) ReloadCMS Development Team //
// http://reloadcms.sf.net //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY, without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. //
// //
// This product released under GNU General Public License v2 //
////////////////////////////////////////////////////////////////////////////////
if(empty($system)) die();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?=$system->config['encoding']?>">
<link rel="stylesheet" href="<?=ADMIN_PATH?>style.css" type="text/css">
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" style="width: 100%; height: 100%">
<tr>
<td valign="middle" align="center">
<table cellpadding="0" cellspacing="0" border="0" style="width: 300px; height: 100px">
<tr>
<td class="messagebox-top" style="height: 100%">
<?=$message?><br />
</td>
</tr>
<tr>
<td class="messagebox-bottom">
[ <a href="javascript:history.back()"><?=__('Back')?></a> ]
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>