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

(-)a/Koha/RotatingCollection.pm (-1 / +2 lines)
Lines 136-142 sub transfer { Link Here
136
136
137
    $self->colBranchcode( $library->branchcode )->store;
137
    $self->colBranchcode( $library->branchcode )->store;
138
138
139
    my $from = C4::Context->userenv->{'branch'} if C4::Context->userenv;
139
    my $from;
140
    $from = C4::Context->userenv->{'branch'} if C4::Context->userenv;
140
141
141
    my $items = $self->items;
142
    my $items = $self->items;
142
    while ( my $item = $items->next ) {
143
    while ( my $item = $items->next ) {
(-)a/Koha/RotatingCollection/Trackings.pm (+4 lines)
Lines 45-50 sub _type { Link Here
45
    return 'CollectionsTracking';
45
    return 'CollectionsTracking';
46
}
46
}
47
47
48
=head3 object_class
49
50
=cut
51
48
sub object_class {
52
sub object_class {
49
    return 'Koha::RotatingCollection::Tracking';
53
    return 'Koha::RotatingCollection::Tracking';
50
}
54
}
(-)a/Koha/RotatingCollections.pm (-1 / +4 lines)
Lines 45-50 sub _type { Link Here
45
    return 'Collection';
45
    return 'Collection';
46
}
46
}
47
47
48
=head3 object_class
49
50
=cut
51
48
sub object_class {
52
sub object_class {
49
    return 'Koha::RotatingCollection';
53
    return 'Koha::RotatingCollection';
50
}
54
}
51
- 

Return to bug 18606