Trying fix for get_values

This commit is contained in:
Kasper Rynning-Tønnesen
2017-03-14 23:32:57 +01:00
parent d1f0dd3323
commit 4afc7dd0bd

View File

@@ -1,8 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<?php <?php
$guid=substr(base64_encode(crc32($_SERVER['HTTP_USER_AGENT'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_ACCEPT_LANGUAGE'])), 0, 8); $guid=substr(base64_encode(crc32($_SERVER['HTTP_USER_AGENT'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_ACCEPT_LANGUAGE'])), 0, 8);
if(isset($_GET['__mref']) || isset($_GET['fb_source']) || isset($_GET['ref']) || isset($_GET['fref'])) {header('Location: /'); exit;} if(isset($_GET['chan'])) {header('Location: '.$_GET['chan']); exit;}
else if(isset($_GET['chan'])) {header('Location: '.$_GET['chan']); exit;} //if(isset($_GET['__mref']) || isset($_GET['fb_source']) || isset($_GET['ref']) || isset($_GET['fref'])) {}
else if(count($_GET) > 0 || $_SERVER['REQUEST_URI'] == "/?"){header('Location: /'); exit;}
$list = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"]))); $list = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"])));
if($list[1]==""||!isset($list[1])||count($list)<=1){$list="";include('public/php/frontpage.php');die();} if($list[1]==""||!isset($list[1])||count($list)<=1){$list="";include('public/php/frontpage.php');die();}
else{$list=preg_replace("/[^A-Za-z0-9 ]/", '', $list[1]);include('public/php/channel.php');die();} else{$list=preg_replace("/[^A-Za-z0-9 ]/", '', $list[1]);include('public/php/channel.php');die();}