Ignore:
Timestamp:
Jun 30, 2025, 3:24:41 PM (12 hours ago)
Author:
chronos
Message:
  • Fixed: Autocreate missing DocumentSequenceNumber records for new years.
  • Fixed: Wrong page index selection.
  • Fixed: RSS feed formatting variable reference.
  • Fixed: Do not parse RouterOS signal import if not connected to the remote host.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/NetworkConfigRouterOS/Generators/Signal.php

    r975 r976  
    2121      //$Routerboard->Port = 8729;
    2222      $Routerboard->Connect($Device['LocalIP'], $this->System->Config['API']['UserName'], $this->System->Config['API']['Password']);
    23       if (!$Routerboard->Connected) continue;
    24 
    25       $Queries = array_merge($Queries, $this->ReadWireless($Device, $Routerboard));
    26       $Queries = array_merge($Queries, $this->ReadWireless60G($Device, $Routerboard));
     23      if ($Routerboard->Connected)
     24      {
     25        $Queries = array_merge($Queries, $this->ReadWireless($Device, $Routerboard));
     26        $Queries = array_merge($Queries, $this->ReadWireless60G($Device, $Routerboard));
     27      }
    2728      echo("\n");
    2829    }
Note: See TracChangeset for help on using the changeset viewer.