We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 353a89d commit 101a413Copy full SHA for 101a413
lib/Gitlab/Api/Issues.php
@@ -30,11 +30,11 @@ public function show($project_id, $issue_id)
30
{
31
if(is_array($issue_id)) {
32
$issue_id = array_map(function($item) { return $this->encodePath($item); }, $issue_id);
33
- $issue_id = 'iid[]=' . join('iid[]=', $issue_id);
+ $issue_id = 'iids[]=' . join('iids[]=', $issue_id);
34
} else {
35
- $issue_id = 'iid[]=' . $this->encodePath($issue_id);
+ $issue_id = 'iids[]=' . $this->encodePath($issue_id);
36
}
37
-
+
38
return $this->get($this->getProjectPath($project_id, 'issues?'.$issue_id));
39
40
0 commit comments