aboutsummaryrefslogtreecommitdiff
path: root/p/api
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2020-02-29 22:30:19 +0100
committerGravatar GitHub <noreply@github.com> 2020-02-29 22:30:19 +0100
commite7c5b03a4d11535ff24671f533bfc5670c83d4dc (patch)
tree5dd05d806a0e8bbb98a42edd12e2a212798c7771 /p/api
parent97160719183045437934af32b791a790433028fc (diff)
GReader remove unsused parameter (#2816)
Diffstat (limited to 'p/api')
-rw-r--r--p/api/greader.php4
1 files changed, 2 insertions, 2 deletions
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'])) {