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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-17 lines)
Lines 629-651 legend:hover { Link Here
629
                                                    </li>
629
                                                    </li>
630
                                                [% END # /UNLESS noaltcontactfirstname %]
630
                                                [% END # /UNLESS noaltcontactfirstname %]
631
631
632
                                                [% UNLESS norelationship %]
633
                                                    [% IF possible_relationships %]
634
                                                        <li>
635
                                                            <label for="relationship">Relationship: </label>
636
                                                            <select class="relationship" name="relationship">
637
                                                                <option value=""></option>
638
                                                                [% FOREACH pr IN possible_relationships.split('\|') %]
639
                                                                    [% IF pr == relationship %]
640
                                                                        <option value="[% pr | html %]" selected="selected">[% pr | html %]</option>
641
                                                                    [% ELSE %]
642
                                                                        <option value="[% pr | html %]">[% pr | html %]</option>
643
                                                                    [% END %]
644
                                                                [% END %]
645
                                                            </select>
646
                                                        </li>
647
                                                    [% END #/IF possible_relationships %]
648
                                                [% END # /UNLESS norelationship %]
649
                                            </ol>
632
                                            </ol>
650
                                        </fieldset> <!-- /#non_patron_guarantor -->
633
                                        </fieldset> <!-- /#non_patron_guarantor -->
651
                                    [% END # /UNLESS nocontactname && nocontactfirstname && norelationship %]
634
                                    [% END # /UNLESS nocontactname && nocontactfirstname && norelationship %]
(-)a/members/memberentry.pl (-1 / +1 lines)
Lines 250-255 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) Link Here
250
        qr/^guarantor_firstname$/,
250
        qr/^guarantor_firstname$/,
251
        qr/^guarantor_surname$/,
251
        qr/^guarantor_surname$/,
252
        qr/^delete_guarantor$/,
252
        qr/^delete_guarantor$/,
253
        qr/^relationship$/,
253
    );
254
    );
254
    for my $regexp (@keys_to_delete) {
255
    for my $regexp (@keys_to_delete) {
255
        for (keys %newdata) {
256
        for (keys %newdata) {
256
- 

Return to bug 28490