From e7c5b03a4d11535ff24671f533bfc5670c83d4dc Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 29 Feb 2020 22:30:19 +0100 Subject: GReader remove unsused parameter (#2816) --- p/api/greader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'p/api') diff --git a/p/api/greader.php b/p/api/greader.php index 6da11ec5f..1d5808069 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -1014,7 +1014,7 @@ if ($pathInfos[1] === 'accounts') { if (isset($pathInfos[5]) && $pathInfos[5] === 'list') { $output = isset($_GET['output']) ? $_GET['output'] : ''; if ($output !== 'json') notImplemented(); - tagList($output); + tagList(); } break; case 'subscription': @@ -1023,7 +1023,7 @@ if ($pathInfos[1] === 'accounts') { case 'list': $output = isset($_GET['output']) ? $_GET['output'] : ''; if ($output !== 'json') notImplemented(); - subscriptionList($_GET['output']); + subscriptionList(); break; case 'edit': if (isset($_REQUEST['s']) && isset($_REQUEST['ac'])) { -- cgit v1.2.3