diff --git a/.htaccess b/.htaccess
index 5a1273e..e97abf9 100644
--- a/.htaccess
+++ b/.htaccess
@@ -9,6 +9,5 @@ RewriteRule ^(.*)$ $1.php [L]
Header set Cache-Control "no-cache, no-store, must-revalidate"
- Header set Pragma "no-cache"
Header set Expires "0"
diff --git a/last_stats.php b/last_stats.php
index d3ab038..856928b 100644
--- a/last_stats.php
+++ b/last_stats.php
@@ -37,14 +37,15 @@ error_reporting(E_ALL);
echo "
";
echo "
| Playername |
- Deaths |
+ Win Ratio |
+ K/D (Human) |
+ K/D (All) |
Kills |
Human Kills |
Matches |
- K/D (Human) |
- K/D (All) |
Wins |
- Win Ratio |
+ Deaths |
+
";
foreach ($player_datas as $player_data) {
if (!isset($player_data['playername']) || is_null($player_data['playername'])) {
@@ -80,14 +81,15 @@ error_reporting(E_ALL);
echo "
| $player_name |
- $deaths |
+ $winratio |
+ $KD_H |
+ $KD_ALL |
$kills |
$humankills |
$matches |
- $KD_H |
- $KD_ALL |
$wins |
- $winratio |
+ $deaths |
+
";
}