ID:          33037
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:      Feedback
 Bug Type:    Livedocs problem
 PHP Version: Irrelevant
 New Comment:

I'm already running the patch mentionned in #30440
http://livedocs.aborla.net/patch.php?id=entities
Moreover, i wrote a comment into this bug.

I applied it a long time ago and, if I remember, one of the pattern
didn't match, so Ive corrected all files by hand.


These lines were removed :

-$GLOBALS['special'] = array('gt' => 1,'lt' => 1,'quot' => 1,'amp' =>
1);
-
 function handle_include($node) 
 {
        global $current_page;
 
        $ref = $node->attributes['ref'];
 
-       /* Special HTML entities */
-       if (isset($GLOBALS['special'][$ref])) {
-               return '&' . $ref . ';';
-       }
-


Previous Comments:
------------------------------------------------------------------------

[2005-05-16 16:28:46] [EMAIL PROTECTED]

Its a livedocs problem.
Could you please try my ancient patch mentioned in #30440 ?

------------------------------------------------------------------------

[2005-05-16 03:52:27] [EMAIL PROTECTED]

Description:
------------
reference/strings/functions/htmlspecialchars-decode.html

Ok, look at the example in livedocs what it outputs..., the output is
the same... (check example too).
I don't really know if it is a doc bug or a livedocs bug.
Feel free to redirect this bug to Livedocs...

Perhaps the output will be great on php.net, i don't know ?!

Expected result:
----------------
<?php
$str = '<p>this -&gt; &quot;</p>';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?> 

<p>this -> "</p>
<p>this -> &quot;</p>

Actual result:
--------------
<?php
$str = '<p>this -&gt; "</p>';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?> 

<p>this -> "</p>
<p>this -> "</p>


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=33037&edit=1

Reply via email to