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/TV/TV.php

    r873 r874  
    1313    if (count($this->System->PathItems) > 1)
    1414    {
    15       if ($this->System->PathItems[1] == 'playlist.m3u') return ($this->ShowPlayList());
    16         else return (PAGE_NOT_FOUND);
    17     } else return ($this->ShowChannelList());
     15      if ($this->System->PathItems[1] == 'playlist.m3u') return $this->ShowPlayList();
     16        else return PAGE_NOT_FOUND;
     17    } else return $this->ShowChannelList();
    1818  }
    1919
     
    7272    $Output .= 'Další online TV na webu: <a href="http://www.tvinfo.cz/live/televize/evropa/cz">TV info</a><br/>';
    7373
    74     return ($Output);
     74    return $Output;
    7575  }
    7676
Note: See TracChangeset for help on using the changeset viewer.