From 6200b6dc585586162b6e170d80dafb02c442bcff Mon Sep 17 00:00:00 2001 From: liyuchun Date: Mon, 29 Nov 2021 16:57:21 +0800 Subject: [PATCH] * Fix bug #16719. --- module/gitlab/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/gitlab/control.php b/module/gitlab/control.php index 4046e78443..2f7b0356fc 100644 --- a/module/gitlab/control.php +++ b/module/gitlab/control.php @@ -614,7 +614,7 @@ class gitlab extends control $gitlab = $this->gitlab->getByID($gitlabID); $this->view->gitlab = $gitlab; - $this->view->keyword = $keyword; + $this->view->keyword = urldecode(urldecode($keyword)); $this->view->pager = $result['pager']; $this->view->title = $this->lang->gitlab->common . $this->lang->colon . $this->lang->gitlab->browseProject; $this->view->gitlabID = $gitlabID;