Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
File:
1 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}
Note: See TracChangeset for help on using the changeset viewer.