diff --git a/lib/Doctrine/Lib.php b/lib/Doctrine/Lib.php index 9782238f3..ded078f87 100644 --- a/lib/Doctrine/Lib.php +++ b/lib/Doctrine/Lib.php @@ -88,7 +88,8 @@ class Doctrine_Lib $collectionName = Doctrine_Lib::plurelize($collection->getTable()->name); if ( ! isset($incomming_xml)) { - $xml = new SimpleXMLElement("<" . $collectionName . ">"); + $new_xml_string = "<" . $recordname . ">"; + $xml = new SimpleXMLElement($new_xml_string); } else { $xml = $incomming_xml->addChild($collectionName); } @@ -121,7 +122,8 @@ class Doctrine_Lib { $recordname = $record->getTable()->name; if (!isset($incomming_xml)) { - $xml = new SimpleXMLElement("<" . $recordname . ">"); + $new_xml_string = "<" . $collection_name . ">"; + $xml = new SimpleXMLElement($new_xml_string); }else{ $xml = $incomming_xml->addChild($recordname); }