diff options
author | Erich Eckner <git@eckner.net> | 2018-07-10 09:06:40 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-07-10 09:06:40 +0200 |
commit | 9722f5cd5e39e07113fc8aeb4e73ff180b85985f (patch) | |
tree | b83b66d09322f9ac44a4a549bc496034151c11d3 | |
parent | 190727abb94c75911cf67624ee7020ff66a19451 (diff) | |
download | archweb32-9722f5cd5e39e07113fc8aeb4e73ff180b85985f.tar.xz |
mirrors/active.php: fix column type
-rw-r--r-- | mirrors/active.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mirrors/active.php b/mirrors/active.php index 2294fb4..a3958b7 100644 --- a/mirrors/active.php +++ b/mirrors/active.php @@ -35,7 +35,8 @@ while($row = $result->fetch_assoc()) { "isos", "ipv4", "ipv6", - "active" + "active", + "recently_active" ) as $key) $row[$key] = floatval($row[$key]); foreach (array( |