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

After a file upload, take the user to the info page, not the view page

Summary: Fixes T5588. If you upload an image, we currently take you to the image URL, but this makes it hard to figure out the monogram for use elsewhere.

Test Plan: Uploaded a file and was taken to the info page.

Reviewers: joshuaspence

Reviewed By: joshuaspence

Subscribers: epriestley

Maniphest Tasks: T5588

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

+1 -1
+1 -1
src/applications/files/controller/PhabricatorFileUploadController.php
··· 23 23 } 24 24 25 25 if (!$errors) { 26 - return id(new AphrontRedirectResponse())->setURI($file->getViewURI()); 26 + return id(new AphrontRedirectResponse())->setURI($file->getInfoURI()); 27 27 } 28 28 } 29 29