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

(-)a/Koha/Patron/Message/Preferences.pm (-2 / +2 lines)
Lines 86-92 sub get_options { Link Here
86
        $choices->{$name}->{'message_attribute_id'} = $transport->message_attribute_id;
86
        $choices->{$name}->{'message_attribute_id'} = $transport->message_attribute_id;
87
        $choices->{$name}->{'message_name'}         = $name;
87
        $choices->{$name}->{'message_name'}         = $name;
88
        $choices->{$name}->{'takes_days'}           = $transport->get_column('takes_days');
88
        $choices->{$name}->{'takes_days'}           = $transport->get_column('takes_days');
89
        $choices->{$name}->{'has_digest'}           = 1 if $transport->is_digest;
89
        $choices->{$name}->{'has_digest'}           = $transport->is_digest ? 1 : 0;
90
        $choices->{$name}->{'has_digest_off'}       = !$transport->is_digest ? 1 : 0;
90
        $choices->{$name}->{'transport_'.$transport->get_column('message_transport_type')} = ' ';
91
        $choices->{$name}->{'transport_'.$transport->get_column('message_transport_type')} = ' ';
91
    }
92
    }
92
93
93
- 

Return to bug 17499