From 2670a0e400dcda72ed3cfaaea328f91ac0a792a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Thu, 25 Aug 2016 17:28:47 +0200 Subject: [PATCH] [core] get parameters from $_GET rather than $_REQUEST MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No need to play with parameters that RSS-Bridge did not ask for Signed-off-by: Pierre Mazière --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index e307134..2e84ab3 100644 --- a/index.php +++ b/index.php @@ -127,7 +127,7 @@ try{ $bridge->useProxy=false; } $bridge->loadMetadatas(); - $params=$_REQUEST; + $params=$_GET; unset($params['action']); unset($params['bridge']); unset($params['format']);