| nlopess@php.net 2005-05-26, 8:57 pm |
| ID: 33037
Updated by: nlopess@php.net
Reported By: jsgoupil@php.net
-Status: No Feedback
+Status: Open
Bug Type: Livedocs problem
PHP Version: Irrelevant
New Comment:
leave it open for further investigation.
Previous Comments:
------------------------------------------------------------------------
[2005-05-24 01:00:05] phpdoc at lists dot php dot net
No feedback was provided for this bug for over a w , so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
------------------------------------------------------------------------
[2005-05-17 00:56:40] jsgoupil@php.net
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 . ';';
- }
-
------------------------------------------------------------------------
[2005-05-16 16:28:46] nlopess@php.net
Its a livedocs problem.
Could you please try my ancient patch mentioned in #30440 ?
------------------------------------------------------------------------
[2005-05-16 03:52:27] jsgoupil@php.net
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 -> "</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>
Actual result:
--------------
<?php
$str = '<p>this -> "</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
|