Skip to content

Commit efa1fbe

Browse files
committed
Merge pull request #1 from WouterJ/patch-1
Fix label encoding
2 parents 65ca7ab + 65d27e3 commit efa1fbe

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)