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

(-)a/Koha/Holds.pm (-1 / +1 lines)
Lines 77-83 sub forced_hold_level { Link Here
77
    my $record_level_count = $self->search( { itemnumber => undef } )->count();
77
    my $record_level_count = $self->search( { itemnumber => undef } )->count();
78
    return 'record' if $record_level_count > 0;
78
    return 'record' if $record_level_count > 0;
79
79
80
    return undef;
80
    return;
81
}
81
}
82
82
83
=head3 type
83
=head3 type
(-)a/t/db_dependent/Reserves/MultiplePerRecord.t (-2 lines)
Lines 17-23 Link Here
17
# You should have received a copy of the GNU General Public License
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
19
20
use Carp::Always;
21
use Modern::Perl;
20
use Modern::Perl;
22
21
23
use Test::More tests => 38;
22
use Test::More tests => 38;
24
- 

Return to bug 17327