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

Remove warning about deprecated phutil_render_tag()

Test Plan: Read it.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

-8
-8
src/docs/developer/rendering_html.diviner
··· 23 23 - @{class:AphrontView} subclasses act like tags when rendering. 24 24 - @{function:pht} has some special rules. 25 25 - There are some other things that you should be aware of. 26 - - Do not use @{function:phutil_render_tag}, it is deprecated and unsafe. 27 26 28 27 See below for discussion. 29 28 ··· 181 180 182 181 // We have a lint rule disallowing this. 183 182 hsprintf($evil); 184 - 185 - = Deprecated Functions = 186 - 187 - The function @{function@libphutil:phutil_render_tag} is unsafe version of 188 - @{function@libphutil:phutil_tag}, is deprecated, and will be removed in the 189 - future. You should avoid its use and convert code to use 190 - @{function@libphutil:phutil_tag}.