mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-20 12:41:17 +01:00
Suppress warnings that might leak information
This commit is contained in:
parent
cb0cc85a01
commit
8c9e6c5419
@ -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) . '&t=' . urlencode($t);
|
||||
?><!DOCTYPE html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user