summaryrefslogtreecommitdiff
path: root/html/pages/admin/pinfo.php
diff options
context:
space:
mode:
Diffstat (limited to 'html/pages/admin/pinfo.php')
-rw-r--r--html/pages/admin/pinfo.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/html/pages/admin/pinfo.php b/html/pages/admin/pinfo.php
index 3ae57f7..cf04b3d 100644
--- a/html/pages/admin/pinfo.php
+++ b/html/pages/admin/pinfo.php
@@ -1,6 +1,6 @@
<?php
if (empty($import_adminkey) or isset($_REQUEST['import_adminkey']) or $import_adminkey != $adminkey) die('bla');
-
+
$options['title'] = 'Extended Player Info';
$options['requireconfirmation'] = false;
$i = 0;
@@ -23,7 +23,7 @@ include('pages/players_info.php');
echo '<br>';
$sql_ips = "SELECT INET_NTOA(p.ip) AS ip, COUNT(p.id) AS matches, MIN(m.time) AS first, MAX(m.time) AS last FROM uts_player AS p, uts_match AS m WHERE p.pid = ".$pid." AND m.id = p.matchid GROUP BY ip ORDER BY ip";
-$q_ips = mysql_query($sql_ips) or die("Can't get ip's: " . mysql_error());
+$q_ips = mysqli_query($GLOBALS["___mysqli_link"], $sql_ips) or die("Can't get ip's: " . mysqli_error($GLOBALS["___mysqli_link"]));
echo '
<table class = "box" border="0" cellpadding="0" cellspacing="0" width="720">
<tbody>
@@ -32,14 +32,14 @@ echo '
</tr>
<tr>
<td class="smheading" width="80" align = "center">IP</td>
- <td class="smheading" width="180" align = "left">Hostname</td>
+ <td class="smheading" width="180" align = "left">Hostname</td>
<td class="smheading" width="60" align = "center">Matches</td>
<td class="smheading" width="200" align = "left">First</td>
<td class="smheading" width="200" align = "left">Last</td>
</tr>';
-while ($r_ips = mysql_fetch_assoc($q_ips)) {
- echo '
+while ($r_ips = mysqli_fetch_assoc($q_ips)) {
+ echo '
<tr>
<td class="grey" align = "center">'.$r_ips['ip'].'</td>
<td class="grey" align = "left">'.gethostbyaddr($r_ips['ip']).'</td>
@@ -55,10 +55,10 @@ echo '
<div class="opnote">* Hostnames are real time and might have been different at the time of playing. *</div>
<br>';
-mysql_free_result($q_ips);
+((mysqli_free_result($q_ips) || (is_object($q_ips) && (get_class($q_ips) == "mysqli_result"))) ? true : false);
$sql_fakes = "SELECT INET_NTOA(p1.ip) AS ip, pi.name FROM uts_player AS p1, uts_player AS p2, uts_pinfo AS pi WHERE p1.pid = ".$pid." AND p1.ip = p2.ip AND p1.pid <> p2.pid AND pi.id = p2.pid GROUP BY pi.name";
-$q_fakes = mysql_query($sql_fakes) or die("Can't retrieve fake nicks: " . mysql_error());
+$q_fakes = mysqli_query($GLOBALS["___mysqli_link"], $sql_fakes) or die("Can't retrieve fake nicks: " . mysqli_error($GLOBALS["___mysqli_link"]));
echo '
<table class = "box" border="0" cellpadding="0" cellspacing="0" width="480">
<tbody>
@@ -70,14 +70,14 @@ echo '
<td class="smheading" width="360" align = "center">IP</td>
</tr>';
-if (mysql_num_rows($q_fakes) == 0) {
+if (mysqli_num_rows($q_fakes) == 0) {
echo '
<tr>
<td class="grey" align = "center" colspan="2">No other names found</td>
</tr>';
}
else {
- while($r_fakes = mysql_fetch_assoc($q_fakes)) {
+ while($r_fakes = mysqli_fetch_assoc($q_fakes)) {
echo '
<tr>
<td class="grey" align = "center">'.$r_fakes[ip].'</td>