@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update an old SSH redirect URI when editing a bot's SSH keys

Summary: See PHI79. When you edit another user's SSH keys (normally, for a bot account) we currently redirect you to an older URI.

Test Plan:
- Viewed a bot's profile page.
- Clicked "Edit Settings" on the Manage page.
- Went to "SSH Keys".
- Uploaded an SSH key.
- Before: redirected to a 404 after finishing the workflow.
- After: redirected to the same page after the workflow.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D18633

+1 -1
+1 -1
src/applications/people/storage/PhabricatorUser.php
··· 1390 1390 return '/settings/panel/ssh/'; 1391 1391 } else { 1392 1392 // Otherwise, take them to the administrative panel for this user. 1393 - return '/settings/'.$this->getID().'/panel/ssh/'; 1393 + return '/settings/user/'.$this->getUsername().'/page/ssh/'; 1394 1394 } 1395 1395 } 1396 1396