Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Issues (412)

src/htdocs/manual_toc.php (1 issue)

Labels
Severity
1
<?php declare(strict_types=1);
2
try {
3
	require_once('../bootstrap.php');
4
	require_once(LIB . 'Default/help.inc.php');
5
	?>
6
<!DOCTYPE html>
7
8
<html>
9
	<head>
10
	<link rel="stylesheet" type="text/css" href="<?php echo DEFAULT_CSS; ?>">
11
	<link rel="stylesheet" type="text/css" href="<?php echo DEFAULT_CSS_COLOUR; ?>">
12
		<title>Space Merchant Realms - Manual</title>
13
		<meta http-equiv="pragma" content="no-cache">
14
	</head>
15
16
	<body>
17
18
		<table width="100%" border="0">
19
20
			<tr>
21
				<td>
22
					<table>
23
						<tr>
24
							<th width="32">
25
								<img src="/images/help/empty.jpg" width="32" height="32">
26
							</th>
27
							<th width="32">
28
								<img src="/images/help/empty.jpg" width="32" height="32">
29
							</th>
30
							<th width="32">
31
								<img src="/images/help/empty.jpg" width="32" height="32">
32
							</th>
33
							<th width="100%" class="center" valign="middle" style="font-size:18pt;font-weight:bold;">Table of Content</th>
34
							<th width="32"><a href="/manual_toc.php"><img src="/images/help/contents.jpg" width="32" height="32" border="0"></a></th>
35
						</tr>
36
					</table>
37
				</td>
38
			</tr>
39
40
			<tr>
41
				<td>
42
				<?php echo_menu(0); ?>
43
				</td>
44
			</tr>
45
46
			<tr>
47
				<td>
48
					<table>
49
						<tr>
50
							<th width="32">
51
								<img src="/images/help/empty.jpg" width="32" height="32">
52
							</th>
53
							<th width="32">
54
								<img src="/images/help/empty.jpg" width="32" height="32">
55
							</th>
56
							<th width="32">
57
								<img src="/images/help/empty.jpg" width="32" height="32">
58
							</th>
59
							<th width="100%" class="center" valign="middle" style="font-size:18pt;font-weight:bold;">Table of Content</th>
60
							<th width="32"><a href="/manual_toc.php"><img src="/images/help/contents.jpg" width="32" height="32" border="0"></a></th>
61
						</tr>
62
					</table>
63
				</td>
64
			</tr>
65
66
		</table>
67
68
	</body>
69
</html><?php
70
} catch (Throwable $e) {
71
	handleException($e);
0 ignored issues
show
The function handleException was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

71
	/** @scrutinizer ignore-call */ 
72
 handleException($e);
Loading history...
72
}
73