Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?php | |
| 2 | |
| 3 $auth = $_SERVER["HTTP_AUTHORIZATION"]; | |
| 4 $url = $_SERVER["REQUEST_URI"]; | |
| 5 | |
| 6 if (isset($auth) || stripos($url, "user:pass") !== false) | |
| 7 die; | |
| 8 | |
| 9 $fileName = $_GET["name"]; | |
| 10 $type = $_GET["type"]; | |
| 11 | |
| 12 $_GET = array(); | |
| 13 $_GET['name'] = $fileName; | |
| 14 $_GET['type'] = $type; | |
| 15 @include("./serve-video.php"); | |
| 16 | |
| 17 ?> | |
| OLD | NEW |