2603.13 cleaning up time display

This commit is contained in:
2026-03-14 01:58:09 -04:00
parent e806c23359
commit fc7f1d2f4d
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ $update_available = $upstream_version && is_newer_version($upstream_version, APP
<tbody> <tbody>
<?php foreach ($recent as $c): ?> <?php foreach ($recent as $c): ?>
<tr> <tr>
<td><?= h($c['occurred_at']) ?></td> <td><?= h(substr($c['occurred_at'], 0, 19)) ?></td>
<td><?= h($c['node_name']) ?></td> <td><?= h($c['node_name']) ?></td>
<td><code><?= h($c['src_ip']) ?></code></td> <td><code><?= h($c['src_ip']) ?></code></td>
<td><?= (int)$c['src_port'] ?></td> <td><?= (int)$c['src_port'] ?></td>

View File

@@ -1,2 +1,2 @@
<?php <?php
define('APP_VERSION', '2603.12'); define('APP_VERSION', '2603.13');