Fixes T10772, not sure why this fails, but reverting the code back to old dialog call works.
Details
Details
- Try to add a new credential when importing a repository.
- Also created a new credential normally, via Passphrase.
- Also edited a credential.
Diff Detail
Diff Detail
- Repository
- rP Phabricator
- Branch
- pass (branched from master)
- Lint
Lint Passed - Unit
Tests Passed - Build Status
Buildable 11677 Build 14621: Run Core Tests Build 14616: Run Core Tests Build 14615: arc lint + arc unit
Event Timeline
Comment Actions
Let me see if I can figure out what's going on here, these are supposed to be equivalent.
Comment Actions
I'm trying to live vicariously. I'll never play a game like Dark Souls. :( I am casual gamer dad now.
Comment Actions
Issue is that newDialog() sets an explicit URI, while new AphrontDialogView() does not.
The explicit URI drops GET parameters. It's sort of good that we do this so that everything is more explicit, this is kind of a bug with the existing form.
Doing it the implicit way could run into other issues with GET parameters conflicting with other GET parameters in unusual cases, which would be more weird/harder to figure out than this.
Put "type" parameter in the form explicitly.