ID:               48339
 Comment by:       jeroen at tietema dot net
 Reported By:      greatwhitepine at bigfoot dot com
 Status:           No Feedback
 Bug Type:         DOM XML related
 Operating System: opensuse 11.1
 PHP Version:      5.2.9
 Assigned To:      rrichards
 New Comment:

I can confirm this issue on Archlinux running PHP 5.3.0 and on Ubuntu 
9.04 with PHP 5.2.6-3ubuntu4.2


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

[2009-06-04 01:00:00] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, 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".

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

[2009-05-27 14:53:51] rricha...@php.net

Did you upgrade libxml2 while upgrading PHP? The has been no change in

the setIdAttribute() method.

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

[2009-05-19 23:17:23] greatwhitepine at bigfoot dot com

Description:
------------
DOMElement::setIdAttribute() is broken in 5.2.9.  It works properly in
5.2.6.


Reproduce code:
---------------
<?php

    // php_dom_setidattribute_bug.php

    $obj_domDocument = new DOMDocument( );

    $obj_domElement = $obj_domDocument->createElement( 'test', 'This is
the root element!' );

    $obj_domElement = $obj_domDocument->appendChild( $obj_domElement
);

    $obj_domElement->setAttribute( 'xml:id', 1 );

    $obj_domElement->setIdAttribute( 'xml:id', TRUE );

    print $obj_domDocument->saveXML( );

?>

Expected result:
----------------
This should not throw any exception.

Actual result:
--------------
PHP Fatal error:  Uncaught exception 'DOMException' with message 'Not
Found Error' in /home/gwp/bin/php_dom_setidattribute_bug.php:13
Stack trace:
#0 /home/gwp/bin/php_dom_setidattribute_bug.php(13):
DOMElement->setIdAttribute('xml:id', true)
#1 {main}
  thrown in /home/gwp/bin/php_dom_setidattribute_bug.php on line 13

Fatal error: Uncaught exception 'DOMException' with message 'Not Found
Error' in /home/gwp/bin/php_dom_setidattribute_bug.php:13



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


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

Reply via email to