Home » XML » XML_Serializer » Bug #1478
Array to string conversion at line 496
Details
| Submitted | 2004-05-24 11:42 UTC |
|---|---|
| From | daz at forumimages dot com |
| Assigned | schst |
| Status | Closed |
| Package | XML_Serializer |
| PHP Version | 4.3.6 |
| OS | Windoze |
| Roadmaps | (Not assigned) |
Comments
[2004-05-24 11:42 UTC] daz at forumimages dot com
Description:
------------
Version 0.92 (and maybe before), but possible suggestion below - excuse my ignorance :)
Reproduce code:
---------------
// Original - Line 496;
if ((string)$tag["content"] == '') {
// Suggestion
if (is_string($tag['content']) && $tag['content'] == '' ) {