From 30e886f9a2596b68eb999265c0e572da4bae361b Mon Sep 17 00:00:00 2001 From: Aleisha Date: Tue, 17 May 2016 05:04:08 +0000 Subject: [PATCH] Bug 16532: Groups showing empty tables if no groups defined To test: 1) Go to Admin -> Libraries and Groups 2) Notice empty tables if nothing defined 3) Apply patch and refresh page 4) Empty tables should not show 5) Add a new group 6) Confirm table shows correctly Sponsored-by: Catalyst IT https://bugs.koha-community.org/show_bug.cgi?id=16532 --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt index b698a86..0920450 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt @@ -283,7 +283,7 @@ tinyMCE.init({ [% IF group_types %] [% FOREACH group_type IN group_types %]

[% IF group_type.categorytype == 'properties' %]Properties[% ELSIF group_type.categorytype == 'searchdomain' %]Search domain[% END %]

- [% IF group_type.categories %] + [% IF group_type.categories.size %] -- 1.7.10.4