Skip to content

Commit d86c9f5

Browse files
committed
Merge remote-tracking branch 'origin/master'
* origin/master: Fix label encoding
2 parents 6d3ebf2 + efa1fbe commit d86c9f5

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)