mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Support more than 9 portals
Summary: If portal is created with id > 9 - then those portals are not reachable and always return 404. Test Plan: Create at least 10 portals, 10th and rest of them will no longer return 404. Reviewers: epriestley, Pawka, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D20852
This commit is contained in:
parent
344a2e39be
commit
960c447aab
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ final class PhabricatorDashboardApplication extends PhabricatorApplication {
|
|||
'PhabricatorDashboardPortalListController',
|
||||
$this->getEditRoutePattern('edit/') =>
|
||||
'PhabricatorDashboardPortalEditController',
|
||||
'view/(?P<portalID>\d)/' => array(
|
||||
'view/(?P<portalID>\d+)/' => array(
|
||||
'' => 'PhabricatorDashboardPortalViewController',
|
||||
) + $menu_rules,
|
||||
|
||||
|
|
Loading…
Reference in a new issue