mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 13:52:40 +01:00
Adding trailing slash to 'Edit Mock' URI
Summary: This one kind of annoyed me when debugging for D5345, since I have stop-on-redirect to on. I know that I have missed showtime, but still, better late than never Test Plan: Verified that I was not stopped when editing a mock Reviewers: epriestley, chad, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5388
This commit is contained in:
parent
77a8765824
commit
34e0f617a5
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ final class PholioMockViewController extends PholioController {
|
|||
id(new PhabricatorActionView())
|
||||
->setIcon('edit')
|
||||
->setName(pht('Edit Mock'))
|
||||
->setHref($this->getApplicationURI('/edit/'.$mock->getID()))
|
||||
->setHref($this->getApplicationURI('/edit/'.$mock->getID().'/'))
|
||||
->setDisabled(!$can_edit)
|
||||
->setWorkflow(!$can_edit));
|
||||
|
||||
|
|
Loading…
Reference in a new issue