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
|
|||
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
|
|||
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. ![]() |
|||
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 | <article> |
||
15 | <h2>About us</h2> |
||
16 | |||
17 | <p>This page was not created by "The Jodel Venture GmbH", the official developers of the Jodel app.</p> |
||
18 | <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
|
|||
19 | |||
20 | <p>If you find bugs or want to help me developing the project, feel free to contact me:</p> |
||
21 | <p>[email protected]</p> |
||
22 | |||
23 | <p><a style="color: #fff; text-decoration: underline;" href="https://github.com/mmainstreet/jodel-web">JodelBlue on GitHub</a></p> |
||
0 ignored issues
–
show
|
|||
24 | </article> |
||
25 | </content> |
||
26 | |||
27 | <footer> |
||
28 | <span class="wrapper"> |
||
29 | |||
30 | <span class="time"> |
||
31 | <span class="tip" data-tooltip="Time"> |
||
32 | <i class="fa fa-clock-o"></i> |
||
33 | 0s |
||
34 | <span class="tiptext">now</span> |
||
35 | </span> |
||
36 | </span> |
||
37 | <span class="distance"> |
||
38 | <span data-tooltip="Author"> |
||
39 | <i class="fa fa-user-o"></i> JodelBlue | |
||
40 | </span> |
||
41 | <span class="tip" data-tooltip="Distance"> |
||
42 | <i class="fa fa-map-marker"></i> |
||
43 | 0 km |
||
44 | <span class="tiptext">jodelblue.com</span> |
||
45 | </span> |
||
46 | </span> |
||
47 | |||
48 | </span> |
||
49 | </footer> |
||
50 | </article> |
||
51 | |||
52 | </content> |
||
53 | </article> |
||
54 | </div> |
||
55 | <?php include 'templates/nav-bottom.php';?> |
||
56 | </div> |
||
57 | <?php include 'templates/footer.php';?> |
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
will produce issues in the first and second line, while this second example
will produce no issues.