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

(-)a/C4/Reserves.pm (-2 / +3 lines)
Lines 788-795 sub GetReserveStatus { Link Here
788
    if(defined $found) {
788
    if(defined $found) {
789
        return 'Waiting'  if $found eq 'W' and $priority == 0;
789
        return 'Waiting'  if $found eq 'W' and $priority == 0;
790
        return 'Finished' if $found eq 'F';
790
        return 'Finished' if $found eq 'F';
791
        return 'Reserved' if $priority > 0;
792
    }
791
    }
792
    if (defined $priority) {
793
		return 'Reserved' if $priority > 0;
794
	}
793
    return '';
795
    return '';
794
    #empty string here will remove need for checking undef, or less log lines
796
    #empty string here will remove need for checking undef, or less log lines
795
}
797
}
796
- 

Return to bug 10663