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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 916-922 Link Here
916
              <fieldset class="rows">
916
              <fieldset class="rows">
917
                <legend>Patron restrictions</legend>
917
                <legend>Patron restrictions</legend>
918
918
919
                [% IF ( debarments.size < 1 ) %]
919
                [% IF ( debarments.size  && debarments.size < 1 ) %]
920
                    <p>Patron is currently unrestricted.</p>
920
                    <p>Patron is currently unrestricted.</p>
921
                [% ELSE %]
921
                [% ELSE %]
922
                    <table>
922
                    <table>
(-)a/members/memberentry.pl (-2 / +1 lines)
Lines 563-569 if (@{$city_arrayref} ) { Link Here
563
563
564
    if ($default_city) { # flag the current or default val
564
    if ($default_city) { # flag the current or default val
565
        for my $city ( @{$city_arrayref} ) {
565
        for my $city ( @{$city_arrayref} ) {
566
            if ($default_city == $city->{cityid}) {
566
            if ($default_city eq $city->{cityid}) {
567
                $city->{selected} = 1;
567
                $city->{selected} = 1;
568
                last;
568
                last;
569
            }
569
            }
570
- 

Return to bug 14480