b1179638 in our test OPAC imports quotes as "#34;". Check...

CommentFileSizeAuthor
#2 millennium-650906-2.patch1.08 KBjanusman

Comments

janusman’s picture

The string is:

Factor "g" 2 y 3 : tests de Factor "g", escalas 2 y 3 : manual

which, when re-imported manually (single item) it's shown correctly as:

Factor "g" 2 y 3 : tests de Factor "g", escalas 2 y 3 : manual
janusman’s picture

Status: Active » Fixed
StatusFileSize
new1.08 KB

Found it; was missing a decode_entities() for MARC text via the bookcart.

Committing this patch.

@@ -265,7 +265,7 @@
   $found_items_indexes = array_keys($found_items);
   $found_items_index = 0; // start at first item in $found_items
   foreach ($marc_matches as $match) {
-    $marc_text = $match[1];
+    $marc_text = decode_entities($match[1]);
     $current_found_item = $found_items[$found_items_indexes[$found_items_index]];
     $current_recnum = $found_items_indexes[$found_items_index];
     // Check if current found_item title coincides with title in this MARC

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.