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 51242d8 commit 6e538a1Copy full SHA for 6e538a1
lib/Gitlab/Api/Issues.php
@@ -13,7 +13,7 @@ public function all($project_id = null, $page = 1, $per_page = self::PER_PAGE, a
13
{
14
$path = $project_id === null ? 'issues' : $this->getProjectPath($project_id, 'issues');
15
16
- $params = array_intersect_key($params, array('labels' => '', 'state' => '', 'sort' => '', 'order_by' => '', 'milestone' => ''));
+ $params = array_intersect_key($params, array('labels' => '', 'state' => '', 'sort' => '', 'order_by' => '', 'milestone' => '', 'search' => ''));
17
$params = array_merge(array(
18
'page' => $page,
19
'per_page' => $per_page
0 commit comments