php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #42950 Read-only error wrongly pointing to main()
Submitted: 2007-10-12 14:34 UTC Modified: 2007-11-12 10:24 UTC
From: root at mantoru dot de Assigned:
Status: Not a bug Package: XML Reader
PHP Version: 5.2.4 OS: *
Private report: No CVE-ID: None
 [2007-10-12 14:34 UTC] root at mantoru dot de
Description:
------------
The error that is issued trying to modify a read-only attribute of XMLReader points to main(). (Probably php_error_docref?)

(Given that read-only properties are not yet implemented, I assumed that it's an extension-specific bug.)

Reproduce code:
---------------
<?php
$reader = new XMLReader;
$reader->isEmptyElement = null;
?>

Expected result:
----------------
Warning: Cannot write to read-only property in %s on line %d

Actual result:
--------------
Warning: main() [function.main.html]: Cannot write to read-only property in %s on line %d

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-11-12 10:24 UTC] tony2001@php.net
There is no active function at the moment, so it refers to main().
This is expected.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 19:01:31 2024 UTC