after upgrade 2.9.0 gateway label missing
-
Hi,
after updating my firewall instance, I noticed that after logging in, the labels (ms)nare missing from all the columns on the gateway widget on the dashboard screen. Can this be fixed?
Thanks!

-
Yup, known issue. There's a patch that should appear in System Patches shortly, or you can apply it now if you want:
--- a/src/usr/local/www/widgets/widgets/gateways.widget.php +++ b/src/usr/local/www/widgets/widgets/gateways.widget.php @@ -157,17 +157,9 @@ if (!function_exists('compose_table_body_contents')) { default => 'bg-info', }; - if (!is_null(array_get_path($gateway_details, 'status'))) { - $delay = number_format((float)rtrim(array_get_path($gateway_details, 'status/delay', ''), "ms"), 1); - $stddev = number_format((float)rtrim(array_get_path($gateway_details, 'status/stddev', ''), "ms"), 1); - $loss = number_format((float)rtrim(array_get_path($gateway_details, 'status/loss', ''), "ms"), 1); - } else { - $delay = $stddev = $loss = ''; - } - - $rtnstr .= "<td>" . $delay . "</td>\n"; - $rtnstr .= "<td>" . $stddev . "</td>\n"; - $rtnstr .= "<td>" . $loss . "</td>\n"; + $rtnstr .= "<td>" . array_get_path($gateway_details, 'status/delay', '') . "</td>\n"; + $rtnstr .= "<td>" . array_get_path($gateway_details, 'status/stddev', '') . "</td>\n"; + $rtnstr .= "<td>" . array_get_path($gateway_details, 'status/loss', '') . "</td>\n"; $rtnstr .= '<td class="' . $bgcolor . '">' . $status_text . "</td>\n"; $rtnstr .= "</tr>\n"; }See redmine #17026
-
S stephenw10 moved this topic from Problems Installing or Upgrading pfSense Software
Copyright 2026 Rubicon Communications LLC (Netgate). All rights reserved.
Privacy Policy · Cookie Policy
Privacy Policy · Cookie Policy