Changeset 874 for trunk/Modules/Network


Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
Location:
trunk/Modules/Network
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Network/HostList.php

    r873 r874  
    1212  {
    1313    if (!$this->System->User->CheckPermission('Network', 'ShowHostList'))
    14       return ('Nemáte oprávnění');
     14      return 'Nemáte oprávnění';
    1515
    1616    if (array_key_exists('admin', $_GET)) $Where = 'AND NetworkDevice.Type IN (1,4,5) ';
     
    5252    }
    5353    $Output .= '</table></div>';
    54     return ($Output);
     54    return $Output;
    5555  }
    5656}
  • trunk/Modules/Network/Hosting.php

    r873 r874  
    1616    }
    1717    $Output .= '</table>';
    18     return ($Output);
     18    return $Output;
    1919  }
    2020}
  • trunk/Modules/Network/Network.php

    r873 r874  
    6969    }
    7070    $Output .= '</table>';
    71     return ($Output);
     71    return $Output;
    7272  }
    7373}
     
    8585      $Output = $this->PageNotFound();
    8686    } else $Output = $this->ShowInformation();
    87     return ($Output);
     87    return $Output;
    8888  }
    8989
     
    9191  {
    9292    if (!$this->System->User->CheckPermission('Network', 'ShowInfo'))
    93       return ('Nemáte oprávnění');
     93      return 'Nemáte oprávnění';
    9494
    9595    $Output = '<a href="'.$this->System->Link('/network/frequency-plan/').'">Frekvenční plán</a><br />';
    9696    $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />';
    9797    $Output .= '<a href="'.$this->System->Link('/network/hosts/').'">Registrované zařízení</a><br />';
    98     return ($Output);
     98    return $Output;
    9999  }
    100100}
     
    895895    $Output .= $StillOffline['Report'];
    896896    $Offline = $this->OnlineList('Offline', 0, -1, 0);
    897     return (array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Odezva'));
     897    return array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Odezva');
    898898  }
    899899
     
    947947    $Output .= $StillOffline['Report'];
    948948    $Offline = $this->PortCheckList('Offline', 0, -1, 0);
    949     return (array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Port'));
     949    return array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Port');
    950950  }
    951951}
  • trunk/Modules/Network/Subnet.php

    r873 r874  
    5454    $Output .= '</table>';
    5555    $Output .= $PageList['Output'];
    56     return ($Output);
     56    return $Output;
    5757  }
    5858}
  • trunk/Modules/Network/UserHosts.php

    r873 r874  
    1515    global $Config;
    1616
    17     if ($this->System->User->User['Id'] == '') return ($this->SystemMessage('Nepovolený přístup', 'Nemáte oprávnění pro tuto operaci'));
     17    if ($this->System->User->User['Id'] == '') return $this->SystemMessage('Nepovolený přístup', 'Nemáte oprávnění pro tuto operaci');
    1818    $Output = '<div align="center" style="font-size: small;"><table class="WideTable">';
    1919    $Output .= '<tr><th>Jméno počítače</th><th>Místní adresa</th><th>Veřejná adresa</th><th>Fyzická adresa</th><th>Typ</th><th>Naposledy online</th></tr>';
     
    3939    }
    4040    $Output .= '</table></div>';
    41     return ($Output);
     41    return $Output;
    4242  }
    4343}
Note: See TracChangeset for help on using the changeset viewer.