View | Details | Raw Unified | Return to bug 6052
Collapse All | Expand All

(-)a/admin/branch_transfer_limits.pl (-2 / +1 lines)
Lines 65-71 for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{b Link Here
65
65
66
# Set the template language for the correct limit type
66
# Set the template language for the correct limit type
67
my $limit_phrase = 'Collection Code';
67
my $limit_phrase = 'Collection Code';
68
my $limitType = C4::Context->preference("BranchTransferLimitsType");
68
my $limitType = C4::Context->preference("BranchTransferLimitsType") || "ccode";
69
if ( $limitType eq 'itemtype' ) {
69
if ( $limitType eq 'itemtype' ) {
70
	$limit_phrase = 'Item Type';
70
	$limit_phrase = 'Item Type';
71
}
71
}
72
- 

Return to bug 6052