From e2dfea2b77fe0ad633bb0e0fc10d869bb6410d93 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Fri, 2 Nov 2018 11:05:46 +0100 Subject: [PATCH] [index.php] Filter parameter '_error_time' from queries The parameter is used in error feeds. Since RSS-Bridge returns valid feeds for error conditions, feed readers may attempt to access the URI returned for the feed item in order to collect additional data, thus including the parameter '_error_time' in the query. This results in another error message, because it is an invalid input parameter. Filtering the parameter allows RSS-Bridge to return the original feed. References #882 --- index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.php b/index.php index 69e5009d..e658b040 100644 --- a/index.php +++ b/index.php @@ -202,6 +202,7 @@ try { 'format', '_noproxy', '_cache_timeout', + '_error_time' ), '') ); @@ -214,6 +215,7 @@ try { 'format', '_noproxy', '_cache_timeout', + '_error_time' ), '') );