From a7133462fbeb30c39632d262be57f0c56498cb11 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 15 Jan 2015 01:43:28 +0000 Subject: [PATCH] Bug 10241 - Easy analyticals creates two 773 fields. Search/link from host to children is broken Hidden 'New child record' if 'EasyAnalytics' is set to display. Testing plan: -Turn on 'EasyAnalytics'. Check the drop down menu from the records page *The drop down menu should include 'Analyze items' and not include 'New child record' -Turn off 'EasyAnalytics'. Again check the drop down menu from the records page *The drop down menu should include 'New child record' and not inlucde 'Analyze items' --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc index cf72265..97da6c3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -152,7 +152,7 @@ CAN_user_serials_create_subscription ) %] [% IF ( EasyAnalyticalRecords && CAN_user_editcatalogue_edit_catalogue ) %]
  • Analyze items
  • [% END %] - [% IF CAN_user_editcatalogue_edit_catalogue %] + [% IF CAN_user_editcatalogue_edit_catalogue && ! EasyAnalyticalRecords %]
  • New child record
  • [% END %] -- 1.7.10.4