produces a warning 'Can't call method "branches" on an undefined value'...
---
admin/patron-attr-types.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/admin/patron-attr-types.pl b/admin/patron-attr-types.pl
index 3935f40..76c98df 100755
--- a/admin/patron-attr-types.pl
+++ b/admin/patron-attr-types.pl
@@ -297,7 +297,7 @@ sub patron_attribute_type_list {
for my $attr (@attr_types) {
next if $attr->{class} ne $class;
my $attr_type = C4::Members::AttributeTypes->fetch($attr->{code});
- $attr->{branches} = $attr_type->branches;
+ $attr->{branches} = $attr_type->{branches};
push @items, $attr;
}
my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
--
1.7.0.4
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/