Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <?php | 1 <?php |
| 2 | 2 |
| 3 $fileName = $_GET["name"]; | 3 $fileName = $_GET["name"]; |
| 4 $type = $_GET["type"]; | 4 $type = $_GET["type"]; |
| 5 $norange = $_GET["norange"]; | |
| 5 | 6 |
| 6 $_GET = array(); | 7 $_GET = array(); |
| 7 $_GET['name'] = $fileName; | 8 $_GET['name'] = $fileName; |
| 8 $_GET['type'] = $type; | 9 $_GET['type'] = $type; |
| 9 @include("./serve-video.php"); | 10 $_GET['norange'] = $norange; |
| 11 @include("./serve-video.php"); | |
| 10 | 12 |
| 11 ?> | 13 ?> |
| OLD | NEW |