PHP 버전 Pooq 함수 복구(p5)

This commit is contained in:
wonipapa 2017-12-06 16:25:27 +09:00
parent a6b54504f9
commit 9ab0b5f99b
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
@date_default_timezone_set('Asia/Seoul');
error_reporting(E_ALL ^ E_NOTICE);
@set_time_limit(0);
define("VERSION", "1.2.3p4");
define("VERSION", "1.2.3p5");
$debug = False;
$ua = "'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'";
$timeout = 5;
@ -414,6 +414,8 @@ function getEPG() {
GetEPGFromIscs($ChannelInfo);
elseif($ChannelSource == 'HCN') :
GetEPGFromHcn($ChannelInfo);
elseif($ChannelSource == 'POOQ') :
GetEPGFromPooq($ChannelInfo);
elseif($ChannelSource == 'EVERYON') :
GetEPGFromEveryon($ChannelInfo);
elseif($ChannelSource == 'OKSUSU') :

View File

@ -44,7 +44,7 @@ if not sys.version_info[:2] == (2, 7):
sys.exit()
# Set variable
__version__ = '1.2.3p4'
__version__ = '1.2.3p5'
debug = False
today = datetime.date.today()
ua = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36', 'accept': '*/*'}