Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Sam Burney
speedtest
Commits
34715cd3
Commit
34715cd3
authored
6 years ago
by
Sam Burney
Browse files
Options
Download
Email Patches
Plain Diff
This is why we test before pushing...
parent
1b38b979
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
telemetry.php
telemetry.php
+2
-2
No files found.
telemetry.php
View file @
34715cd3
<?php
include_once
(
'telemetry_settings.php'
);
$ip
=
(
$_SERVER
[
'REMOTE_ADDR'
]);
$ua
=
(
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
])
?
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
]
:
$_SERVER
[
'HTTP_USER_AGENT'
]);
$ip
=
(
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
])
?
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
]
:
$_SERVER
[
'REMOTE_ADDR'
]);
$ua
=
(
$_SERVER
[
'HTTP_USER_AGENT'
]);
$lang
=
""
;
if
(
isset
(
$_SERVER
[
'HTTP_ACCEPT_LANGUAGE'
]))
$lang
=
(
$_SERVER
[
'HTTP_ACCEPT_LANGUAGE'
]);
$dl
=
(
$_POST
[
"dl"
]);
$ul
=
(
$_POST
[
"ul"
]);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment