From 3552fd8062a62b1102e33ef8298f394674012a75 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Sun, 18 Aug 2013 12:57:50 -0400 Subject: [PATCH] Bug 5202 QA follow-up: improve merge reference selection The link on the merge reference had been wrong, and framework types were not indicated when you were merging records of two types. This patch fixes those problems. --- authorities/merge.pl | 2 ++ .../prog/en/modules/authorities/merge.tt | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/authorities/merge.pl b/authorities/merge.pl index be24c8e..5682b5e 100755 --- a/authorities/merge.pl +++ b/authorities/merge.pl @@ -169,6 +169,8 @@ else { frameworkselect => \@frameworkselect, frameworkcode1 => $recordObj1->authtype, frameworkcode2 => $recordObj2->authtype, + frameworklabel1 => $frameworks->{$recordObj1->authtype}->{'authtypetext'}, + frameworklabel2 => $frameworks->{$recordObj2->authtype}->{'authtypetext'}, ); } } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt index e8a41f5..63f72ba 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt @@ -76,8 +76,8 @@ function changeFramework(fw) {
Merge reference
    -
  1. -
  2. +
  3. +
  4. [% IF frameworkselect %]
  5. -- 1.7.9.5