Skip to content

Commit 3910923

Browse files
committed
Fix: Run 'make coding-standards'
1 parent bade83e commit 3910923

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/ip-to-country.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ function i2c_realip()
202202
if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
203203

204204
// Put the IP's into an array which we shall work with shortly.
205-
$ips = explode (", ", $_SERVER['HTTP_X_FORWARDED_FOR']);
205+
$ips = explode(", ", $_SERVER['HTTP_X_FORWARDED_FOR']);
206206
if ($ip) { array_unshift($ips, $ip); $ip = false; }
207207

208208
for ($i = 0; $i < count($ips); $i++) {

releases/8.2/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22
$_SERVER['BASE_PAGE'] = 'releases/8.2/index.php';
3-
include (__DIR__ . '/../../include/site.inc');
3+
include(__DIR__ . '/../../include/site.inc');
44

55
mirror_redirect('/releases/8.2/en.php');

releases/8.3/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22
$_SERVER['BASE_PAGE'] = 'releases/8.3/index.php';
3-
include (__DIR__ . '/../../include/site.inc');
3+
include(__DIR__ . '/../../include/site.inc');
44

55
mirror_redirect('/releases/8.3/en.php');

0 commit comments

Comments
 (0)