瀏覽代碼

Suppress warnings that might leak information

tags/vichan-4.9.92
kpcyrd 9 年之前
父節點
當前提交
33c6d6644e
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      player.php

+ 3
- 3
player.php 查看文件

@@ -1,8 +1,8 @@
<?php
/* This file is dedicated to the public domain; you may do as you wish with it. */
$v = (string)$_GET['v'];
$t = (string)$_GET['t'];
$loop = (boolean)$_GET['loop'];
$v = @(string)$_GET['v'];
$t = @(string)$_GET['t'];
$loop = @(boolean)$_GET['loop'];

$params = '?v=' . urlencode($v) . '&amp;t=' . urlencode($t);
?><!DOCTYPE html>


Loading…
取消
儲存