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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-2 / +2 lines)
Lines 596-603 Link Here
596
                        <tr>
596
                        <tr>
597
                            <th scope="row"><strong>Warning</strong> </th>
597
                            <th scope="row"><strong>Warning</strong> </th>
598
                            <td
598
                            <td
599
                                >System preference 'NotifyPasswordChange' is enabled, but the PASSWORD_CHANGE notice template is missing. Password changes will fail. Please create the PASSWORD_CHANGE notice template in
599
                                >System preference 'NotifyPasswordChange' is enabled, but the PASSWORD_CHANGE notice template is missing. Patrons will not be notified about password changes. Please create the PASSWORD_CHANGE notice template
600
                                <a href="/cgi-bin/koha/tools/letter.pl">Tools &gt; Notices and slips</a>.</td
600
                                in <a href="/cgi-bin/koha/tools/letter.pl">Tools &gt; Notices and slips</a>.</td
601
                            >
601
                            >
602
                        </tr>
602
                        </tr>
603
                    [% END %]
603
                    [% END %]
(-)a/t/db_dependent/Koha/Patron.t (-1 / +1 lines)
Lines 1546-1551 subtest 'password expiration tests' => sub { Link Here
1546
        my $date = dt_from_string();
1546
        my $date = dt_from_string();
1547
        my $category =
1547
        my $category =
1548
            $builder->build_object( { class => 'Koha::Patron::Categories', value => { password_expiry_days => 10 } } );
1548
            $builder->build_object( { class => 'Koha::Patron::Categories', value => { password_expiry_days => 10 } } );
1549
        Koha::Notice::Templates->search( { code => 'PASSWORD_CHANGE', module => 'members' } )->delete;
1549
        my $patron = $builder->build_object(
1550
        my $patron = $builder->build_object(
1550
            {
1551
            {
1551
                class => 'Koha::Patrons',
1552
                class => 'Koha::Patrons',
1552
- 

Return to bug 40608