Explorar el Código

Suppress warnings that might leak information

tags/vichan-4.9.92
kpcyrd hace 9 años
padre
commit
33c6d6644e
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      player.php

+ 3
- 3
player.php Ver fichero

@@ -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>


Cargando…
Cancelar
Guardar