Browse Source

Merge pull request #224 from nhart/7.x

catch bad dc.. or qdc elements
pull/225/merge
Jonathan Green 12 years ago
parent
commit
ed0a7e6f3a
  1. 7
      includes/DublinCore.inc

7
includes/DublinCore.inc

@ -39,7 +39,7 @@ class DublinCore {
* @param string $dc_xml
*/
function DublinCore($dc_xml = NULL) {
if (!empty($dc_string)) {
if (!empty($dc_xml)) {
$this->dc = self::import_from_xml_string($dc_xml);
}
}
@ -145,8 +145,11 @@ class DublinCore {
if ($dc_doc->loadXML($dc_xml)) {
$oai_dc = $dc_doc->getElementsByTagNameNS('http://purl.org/dc/elements/1.1/', '*');
$new_dc = new DublinCore();
foreach ($oai_dc as $child) {
array_push($new_dc->dc[$child->nodeName], $child->nodeValue);
if(isset($new_dc->dc[$child->nodeName])) {
array_push($new_dc->dc[$child->nodeName], $child->nodeValue);
}
}
return $new_dc;
}

Loading…
Cancel
Save