Skip to content

Commit b704bb7

Browse files
committed
Fix: Run 'make coding-standards'
1 parent 840fd2e commit b704bb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+68
-12
lines changed

.router.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
$_SERVER["SERVER_ADDR"] = $_SERVER["HTTP_HOST"];
34

45
$filename = $_SERVER["PATH_INFO"] ?? $_SERVER["SCRIPT_NAME"];

archive/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
include_once __DIR__ . '/../include/prepend.inc';
34
$i = 0;
45
do {

backend/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
// Simulate a /backend shortcut call (which will lead to a manual page)
34
$_SERVER['REQUEST_URI'] = '/backend';
45
include_once __DIR__ . '/../include/prepend.inc';

bin/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
// Simulate a /bin shortcut call (which will lead to a manual page)
34
$_SERVER['REQUEST_URI'] = '/bin';
45
include_once __DIR__ . '/../include/prepend.inc';

conferences/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
$_SERVER['BASE_PAGE'] = 'conferences/index.php';
34
include_once __DIR__ . '/../include/prepend.inc';
45
include_once __DIR__ . '/../include/pregen-news.inc';

credits.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
$_SERVER['BASE_PAGE'] = 'credits.php';
34
include_once __DIR__ . '/include/prepend.inc';
45

images/elephpants.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
include_once __DIR__ . '/../include/prepend.inc';
34

45
$now = $_SERVER["REQUEST_TIME"];

images/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
// Simulate a /images shortcut call (which will lead to a manual page)
34
$_SERVER['REQUEST_URI'] = '/images';
45
include_once __DIR__ . '/../include/prepend.inc';

include/branches.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
include_once __DIR__ . '/releases.inc';
34
include_once __DIR__ . '/version.inc';
45

include/changelogs.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
function bugfix($number): void {
34
echo "Fixed bug "; bugl($number);
45
}

0 commit comments

Comments
 (0)