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

Don't require memes to be at the end of a line

Summary: Fixes T7893.

Test Plan: {F395543}

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T7893

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

+1 -1
+1 -1
src/applications/macro/markup/PhabricatorMemeRemarkupRule.php
··· 10 10 11 11 public function apply($text) { 12 12 return preg_replace_callback( 13 - '@{meme,((?:[^}\\\\]+|\\\\.)+)}$@m', 13 + '@{meme,((?:[^}\\\\]+|\\\\.)+)}@m', 14 14 array($this, 'markupMeme'), 15 15 $text); 16 16 }