Completed
Push — master ( 62cb27...c16962 )
by mains
03:25
created

error-pages/410.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
	$config = parse_ini_file(realpath(__DIR__ . '/..') . '/config/config.ini.php');
3
4
	$baseUrl = $config['Url'];
5
6
7
	$title = '410 Gone - JodelBlue Web-App and Browser-Client';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 7 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
8
	$description = 'JodelBlue is a WebClient for the Jodel App. No registration required! Browse Jodels all over the world. Send your own Jodels or upvote others.';
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 161 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
9
	$backButton = $baseUrl;
10
	include(realpath(__DIR__ . '/..') . '/templates/header.php');
11
?>		
12
<div class="mainContent container">		
13
	<div class="content row">
14
		<article class="topContent col-sm-12">
15
16
			<content id="posts">
17
				<article id="aboutUs" class="jodel" style="background-color: #5682a3;">
18
					<content>
19
						Error: Gone<br />
20
						<br />
21
						The requested URL was not found on this server.
22
					</content>
23
					<aside>
24
						<a href="index.php">
25
							<i class="fa fa-angle-up fa-3x"></i>
26
						</a>	
27
							<br />
28
						410<br />
29
						<a href="index.php">
30
							<i class="fa fa-angle-down fa-3x"></i>
31
						</a>
32
					</aside>
33
					<footer>
34
						<table>
35
							<tr>
36
								<td class="time">
37
									<span data-tooltip="Time">
38
										<i class="fa fa-clock-o"></i>
39
										410s
40
									</span> 
41
								</td>
42
								<td class="comments">
43
									
44
								</td>
45
								<td class="distance">
46
47
48
									<span data-tooltip="Author">
49
										<i class="fa fa-user-o"></i> JodelBlue |
50
									</span>
51
											
52
53
54
55
									<span data-tooltip="Distance">
56
										<i class="fa fa-map-marker"></i>
57
										410 km
58
									</span>
59
								</td>
60
							</tr>
61
						</table>
62
					</footer>
63
				</article>
64
65
			</content>
66
		</article>
67
	</div>
68
</div>
69
<?php include(realpath(__DIR__ . '/..') . '/templates/footer.php');?>