Skip to content

Commit b314fcb

Browse files
committed
Fix: Run 'make coding-standards'
1 parent dcac1eb commit b314fcb

File tree

449 files changed

+1786
-1786
lines changed

Some content is hidden

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

449 files changed

+1786
-1786
lines changed

.router.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

3-
$_SERVER["SERVER_ADDR"] = $_SERVER["HTTP_HOST"];
3+
$_SERVER['SERVER_ADDR'] = $_SERVER['HTTP_HOST'];
44

5-
$filename = $_SERVER["PATH_INFO"] ?? $_SERVER["SCRIPT_NAME"];
5+
$filename = $_SERVER['PATH_INFO'] ?? $_SERVER['SCRIPT_NAME'];
66

7-
if (!file_exists($_SERVER["DOCUMENT_ROOT"] . $filename)) {
7+
if (!file_exists($_SERVER['DOCUMENT_ROOT'] . $filename)) {
88
require_once __DIR__ . '/error.php';
99

1010
return;
1111
}
1212

1313
/* This could be an image or whatever, so don't try to compress it */
14-
ini_set("zlib.output_compression", 0);
14+
ini_set('zlib.output_compression', 0);
1515
return false;

0 commit comments

Comments
 (0)