svn://svn.open-ils.org/ILS/trunk
........
r9634 | erickson | 2008-05-18 17:52:31 -0400 (Sun, 18 May 2008) | 1 line
similar to the supercat feeds, we have to both define the marc namespace as well as set the namespace of the documentElement at bib create time so it can be parsed properly later
........
git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@9635
dcc99617-32d9-48b4-a31d-
7c20da2025e4
my $marcxml = XML::LibXML->new->parse_string( $xml );
$marcxml->documentElement->setNamespace(
"http://www.loc.gov/MARC21/slim", "marc", 1 );
+ $marcxml->documentElement->setNamespace("http://www.loc.gov/MARC21/slim");
return $marcxml;
}