From 69daebc2da6e56debe1896a3769475021d788432 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 28 Jul 2013 11:00:35 -0700 Subject: [PATCH] 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 --- src/docs/developer/rendering_html.diviner | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/docs/developer/rendering_html.diviner b/src/docs/developer/rendering_html.diviner index e1b1d679a3..70401d8bcf 100644 --- a/src/docs/developer/rendering_html.diviner +++ b/src/docs/developer/rendering_html.diviner @@ -23,7 +23,6 @@ from XSS and render correctly. Broadly: - @{class:AphrontView} subclasses act like tags when rendering. - @{function:pht} has some special rules. - There are some other things that you should be aware of. - - Do not use @{function:phutil_render_tag}, it is deprecated and unsafe. See below for discussion. @@ -181,10 +180,3 @@ following examples are dangerous: // We have a lint rule disallowing this. hsprintf($evil); - -= Deprecated Functions = - -The function @{function@libphutil:phutil_render_tag} is unsafe version of -@{function@libphutil:phutil_tag}, is deprecated, and will be removed in the -future. You should avoid its use and convert code to use -@{function@libphutil:phutil_tag}.