mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
Suppress warnings that might leak information
This commit is contained in:
parent
bf52d41650
commit
33c6d6644e
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
/* This file is dedicated to the public domain; you may do as you wish with it. */
|
/* This file is dedicated to the public domain; you may do as you wish with it. */
|
||||||
$v = (string)$_GET['v'];
|
$v = @(string)$_GET['v'];
|
||||||
$t = (string)$_GET['t'];
|
$t = @(string)$_GET['t'];
|
||||||
$loop = (boolean)$_GET['loop'];
|
$loop = @(boolean)$_GET['loop'];
|
||||||
|
|
||||||
$params = '?v=' . urlencode($v) . '&t=' . urlencode($t);
|
$params = '?v=' . urlencode($v) . '&t=' . urlencode($t);
|
||||||
?><!DOCTYPE html>
|
?><!DOCTYPE html>
|
||||||
|
Loading…
Reference in New Issue
Block a user