Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login
    Introducing Netgate Nexus: Multi-Instance Management at Your Fingertips.

    after upgrade 2.9.0 gateway label missing

    Scheduled Pinned Locked Moved General pfSense Questions
    2 Posts 2 Posters 167 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D Offline
      delfi5
      last edited by

      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!
      436e3f74-9f4a-4ed5-9c8e-3f28d69a171e-immagine.png

      luckman212L 1 Reply Last reply Reply Quote 0
      • luckman212L Offline
        luckman212 LAYER 8 @delfi5
        last edited by

        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

        1 Reply Last reply Reply Quote 2
        • stephenw10S stephenw10 moved this topic from Problems Installing or Upgrading pfSense Software
        • First post
          Last post
        Copyright 2026 Rubicon Communications LLC (Netgate). All rights reserved.
        Privacy Policy · Cookie Policy