Re-arrange Log columns; replace SS

This commit is contained in:
Luke S Thompson
2025-08-19 10:06:10 +10:00
parent 0f64b5b835
commit aa54e51c7b
2 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 372 KiB

View File

@@ -597,9 +597,9 @@ function pvewhmcs_output($vars) {
echo '<table class="datatable" border="0" cellpadding="3" cellspacing="1" width="100%">'; echo '<table class="datatable" border="0" cellpadding="3" cellspacing="1" width="100%">';
echo '<tbody><tr> echo '<tbody><tr>
<th>Node</th> <th>Task</th>
<th>Type</th>
<th>Status</th> <th>Status</th>
<th>Node</th>
<th>User</th> <th>User</th>
<th>Duration</th> <th>Duration</th>
<th>Start</th> <th>Start</th>
@@ -627,9 +627,9 @@ function pvewhmcs_output($vars) {
: ((preg_match('/(error|fail|aborted|unknown)/i', (string)$status)) ? '❌' : '⏳'); : ((preg_match('/(error|fail|aborted|unknown)/i', (string)$status)) ? '❌' : '⏳');
echo '<tr>'; echo '<tr>';
echo '<td>' . htmlspecialchars($node) . '</td>';
echo '<td><strong>' . htmlspecialchars($type) . '</strong></td>'; echo '<td><strong>' . htmlspecialchars($type) . '</strong></td>';
echo '<td>' . $badge . htmlspecialchars($status) . '</td>'; echo '<td>' . $badge . ' ' . htmlspecialchars($status) . '</td>';
echo '<td><strong>' . htmlspecialchars($node) . '</strong></td>';
echo '<td>' . htmlspecialchars($user) . '</td>'; echo '<td>' . htmlspecialchars($user) . '</td>';
echo '<td>' . htmlspecialchars($durH) . '</td>'; echo '<td>' . htmlspecialchars($durH) . '</td>';
echo '<td>' . htmlspecialchars($start) . '</td>'; echo '<td>' . htmlspecialchars($start) . '</td>';