From c1433d30653cb2d51f2fefaab890c2651c8f1cb7 Mon Sep 17 00:00:00 2001 From: erickson Date: Sun, 18 May 2008 21:53:59 +0000 Subject: [PATCH] Merged revisions 9634 via svnmerge from 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 --- Open-ILS/src/perlmods/OpenILS/Application/Cat.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm index f2a16f529c..80ec094a13 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm @@ -320,6 +320,7 @@ sub __make_marc_doc { 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; } -- 2.11.0