mirror of
https://github.com/hklcf/MediaFire-Stream-API
synced 2026-01-13 13:24:29 -08:00
Update mediafire.php
Fixed Undefined index: url in PHP Warnings
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Version: 1.0
|
Version: 1.1
|
||||||
Author: HKLCF
|
Author: HKLCF
|
||||||
Copyright: HKLCF
|
Copyright: HKLCF
|
||||||
Last Modified: 06/05/2018
|
Last Modified: 06/05/2018
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$url = htmlspecialchars($_GET['url']);
|
$url = isset($_GET['url']) ? htmlspecialchars($_GET['url']) : null;
|
||||||
$support_domain = 'www.mediafire.com';
|
$support_domain = 'www.mediafire.com';
|
||||||
|
|
||||||
if(empty($url)) {
|
if(empty($url)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user