-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.php
37 lines (32 loc) · 929 Bytes
/
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
<?php
# $Id: error.php,v 1.2 2009-11-16 21:52:45 oops Exp $
include "include/header.php";
$str = urldecode($str);
$str = stripslashes($str);
$title = $notice ? $_('er_msg') : $_('er_msgs');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?=$_('charset')?>">
<title>JSboard <?=$version?> - <?=$title?></title>
<link rel="stylesheet" type="text/css" href="./theme/<?=$print['theme']?>/default.css">
</head>
<body>
<br>
<table align="center" width="95%" cellpadding="1" cellspacing="0"><tr><td class="err_bg">
<table width="100%" cellpadding="3" cellspacing="0">
<tr>
<td class="err_fg">
<?=$str?>
<br><br>
</td>
</tr><tr>
<td align="right">
<form action="<?=$_pself?>"><input type="button" value= "<?=$_('b_sm')?>" onClick = "window.close()"></form>
</td>
</tr>
</table>
</td></tr></table>
</body>
</html>