Completed
Push — master ( 64efce...1ec187 )
by mains
02:46
created

about-us.php (5 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 include 'php/jodel-web.php';
2
$title = 'About us - 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...
3
$description = 'We try to get the best Jodel experience on your Browser. This allows you to use jodel on your desktop PC or Windows Phone. I am pleased if you participate in the development on GitHub.';
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 202 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...
4
$backButton = '';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 2 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...
5
include 'templates/header.php';
6
?>	
7
<div class="mainContent container">		
8
	<div class="content row">
9
		<article class="topContent col-sm-12">
10
11
			<content id="posts">
12
				<article id="aboutUs" class="jodel" style="background-color: #5682a3;">
13
					<content>
14
						<h2>About us</h2>
15
16
						<p>This page was not created by "The Jodel Venture GmbH", the official developers of the Jodel app.</p>
17
						<p>All content is from the official Jodel app, all rights remain with the respective owners. We do not store any data or spread them.</p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 143 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...
18
						<p>[email protected]</p>
19
						<p><a style="color: #fff; text-decoration: underline;" href="https://github.com/mmainstreet/jodel-web">On Github</a></p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 126 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...
20
					</content>
21
22
					<footer>
23
						<table>
24
							<tr>
25
								<td class="time">
26
									<span data-tooltip="Time">
27
										<i class="fa fa-clock-o"></i>
28
										0s
29
									</span> 
30
								</td>
31
								<td class="comments">
32
								</td>
33
								<td class="distance">
34
									<span data-tooltip="Author">
35
										<i class="fa fa-user-o"></i> JodelBlue |
36
									</span>
37
									<span data-tooltip="Distance">
38
										<i class="fa fa-map-marker"></i>
39
										0 km
40
									</span>
41
								</td>
42
							</tr>
43
						</table>
44
					</footer>
45
				</article>
46
47
			</content>
48
		</article>
49
	</div>
50
	<?php include 'templates/nav-bottom.php';?>
51
</div>
52
<?php include 'templates/footer.php';?>