Skip to content

Commit 65d27e3

Browse files
committed
Fix label encoding
1 parent 65ca7ab commit 65d27e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AppBundle/Controller/DefaultController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function homepageAction()
1818
'https://github.com/%s/%s/labels/%s',
1919
$this->container->getParameter('repository_username'),
2020
$this->container->getParameter('repository_name'),
21-
urlencode(StatusManager::getLabelForStatus(StatusManager::STATUS_NEEDS_REVIEW))
21+
rawurlencode(StatusManager::getLabelForStatus(StatusManager::STATUS_NEEDS_REVIEW))
2222
)
2323
]);
2424
}

0 commit comments

Comments
 (0)