Skip to content

Commit

Permalink
Remove year to reduce table size
Browse files Browse the repository at this point in the history
  • Loading branch information
cigamit committed Oct 21, 2018
1 parent 157b33c commit 27937b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pollers.php
Original file line number Diff line number Diff line change
Expand Up @@ -858,13 +858,13 @@ function clearFilter() {
form_selectable_cell(number_format_i18n($poller['snmp'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['script'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['server'], '-1'), $poller['id'], '', 'right');
form_selectable_cell($poller['last_update'], $poller['id'], '', 'right');
form_selectable_cell($poller['last_status'], $poller['id'], '', 'right');
form_selectable_cell(substr($poller['last_update'], 5), $poller['id'], '', 'right');
form_selectable_cell(substr($poller['last_status'], 5), $poller['id'], '', 'right');

if ($poller['id'] == 1) {
form_selectable_cell(__('N/A'), $poller['id'], '', 'right');
} else {
form_selectable_cell($poller['last_sync'], $poller['id'], '', 'right');
form_selectable_cell(substr($poller['last_sync'], 5), $poller['id'], '', 'right');
}

form_checkbox_cell($poller['name'], $poller['id'], $disabled);
Expand Down

0 comments on commit 27937b4

Please sign in to comment.