From 4d7f7e2fe82a73b130e18e0ddb754a28ae7530aa Mon Sep 17 00:00:00 2001 From: Sophie Meynieux Date: Thu, 7 Apr 2011 16:05:16 +0200 Subject: [PATCH] Bug #6117 : Attaching an item with a different framework modify the framework of the biblio. With this patch, the framework of the biblio is left unchanged event if the attached item is of a different framework --- C4/Items.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 939e682..84ea898 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -2075,6 +2075,7 @@ sub MoveItemFromBiblio { $record->insert_fields_ordered($item); # Saving the modification + $frameworkcode = GetFrameworkCode($tobiblio); ModBiblioMarc($record, $tobiblio, $frameworkcode); } else { -- 1.7.0.4