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

Flag meme redirect as external

Summary: Fixes T5918.

Test Plan: Verified memes work again.

Reviewers: hach-que, btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T5918

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

+3 -1
+3 -1
src/applications/macro/controller/PhabricatorMacroMemeController.php
··· 15 15 if ($uri === false) { 16 16 return new Aphront404Response(); 17 17 } 18 - return id(new AphrontRedirectResponse())->setURI($uri); 18 + return id(new AphrontRedirectResponse()) 19 + ->setIsExternal(true) 20 + ->setURI($uri); 19 21 } 20 22 21 23 public static function generateMacro($user, $macro_name, $upper_text,