|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-11-23 09:20 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 21:00:01 2025 UTC |
Description: ------------ Actual version :PHP 4.3.10-dev (cli) (built: Nov 21 2004 00:51:32) I think a line like the following should be included in the package.dtd document, so that IE can understand the XML files that use this DTD. <!ENTITY % NUMBER "CDATA"> and later in the ATTLIST , the lines refering to NUMBER must be changed to : phpapi %NUMBER; #IMPLIED instead of : phpapi NUMBER #IMPLIED which is the line IE bums out on. Reproduce code: --------------- phpapi NUMBER #IMPLIED Expected result: ---------------- once changed to : phpapi %NUMBER; #IMPLIED IE should treat it as proper ( well formed XML/DTD). Actual result: -------------- IE reports NUMBER as undefined.