From a10fa06420d35fca9b0de6c0e5112bc5daec9886 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Sat, 25 Jun 2016 23:49:54 +0000 Subject: [PATCH] Improve table introduced with r339499 We replace the quotes with s and make a real table caption. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339500 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../strings/functions/htmlspecialchars.xml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/reference/strings/functions/htmlspecialchars.xml b/reference/strings/functions/htmlspecialchars.xml index 4bd6fca8e7..46aeb72a51 100644 --- a/reference/strings/functions/htmlspecialchars.xml +++ b/reference/strings/functions/htmlspecialchars.xml @@ -34,8 +34,8 @@ You may have to use mb_encode_numericentity instead. - The translations performed are: - + + Performed translations @@ -45,33 +45,33 @@ - '&' (ampersand) - '&amp;' + & (ampersand) + &amp; - '"' (double quote) - '&quot;' when ENT_NOQUOTES + " (double quote) + &quot; when ENT_NOQUOTES - "'" (single quote) + ' (single quote) - '&#039;' (for ENT_HTML401) or &apos; (for + &#039; (for ENT_HTML401) or &apos; (for ENT_XML1, ENT_XHTML or ENT_HTML5), but only when ENT_QUOTES is set - '<' (less than) - '&lt;' + < (less than) + &lt; - '>' (greater than) - '&gt;' + > (greater than) + &gt; - +