@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.

Fix redirect to Password settings panel after "Reset Password" login

Summary: Fixes T11107. The URI change here meant we were dropping the "key" parameter, which allows you to set a new password without knowing your old one.

Test Plan: Reset password, didn't need to provide old one anymore.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11107

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

+4 -1
+4 -1
src/applications/auth/controller/PhabricatorAuthOneTimeLoginController.php
··· 139 139 ->save(); 140 140 unset($unguarded); 141 141 142 - $next = (string)id(new PhutilURI('/settings/panel/password/')) 142 + $username = $target_user->getUsername(); 143 + $panel_uri = "/settings/user/{$username}/page/password/"; 144 + 145 + $next = (string)id(new PhutilURI($panel_uri)) 143 146 ->setQueryParams( 144 147 array( 145 148 'key' => $key,