Date: 12/03/02
- Next message: derick <email protected>: "[PHP-DOC] #20794 [Bgs->Opn]: xsl:output not affecting output correctly"
- Previous message: Gabor Hojtsy: "Re: [PHP-DOC] Re: legacy entities was: [PHP-DOC] cvs: phpdoc /entities global.ent"
- In reply to: John Coggeshall: "RE: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Next in thread: Philip Olson: "Re: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Reply: Philip Olson: "Re: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> >Not sure what you mean. Mark that bug as a duplicate,
> >it's been taken care of. I see no #38 in the code nor
> >should there be. It will show up in the manual soon.
>
> We're misunderstanding each other... Goto
>
> http://www.php.net/manual/de/language.references.whatdo.php
>
> Line 95 of the source for that page... That shouldn't be like that. The
> XML seems right AFAIK, but the actual page itself isn't properly
> displaying the & character... What it's doing seems to be converting the
> & character in the XML to an '&' (which is right), then converting
> the ampersand in '&' to '&'... Hence we end up with:
>
> &amp;
>
> Which renders: &
>
> Which is wrong ;)
See the example source code in the XML file. If it's in <![CDATA[ ]]>, then
it should be =& in the code (no XML entity used!). If it's not in
![CDATA[ ]]>
then it should be =& (as & need to be escaped). This is probably &
inside a <![CDATA[ ]]>, and this causes the problem...
Goba
-- PHP Documentation Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: derick <email protected>: "[PHP-DOC] #20794 [Bgs->Opn]: xsl:output not affecting output correctly"
- Previous message: Gabor Hojtsy: "Re: [PHP-DOC] Re: legacy entities was: [PHP-DOC] cvs: phpdoc /entities global.ent"
- In reply to: John Coggeshall: "RE: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Next in thread: Philip Olson: "Re: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Reply: Philip Olson: "Re: [PHP-DOC] #20787 [Opn->Asn]: Wrong character in HTML File"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

