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

(-)a/Koha/Patron.pm (-4 / +2 lines)
Lines 228-236 sub store { Link Here
228
                # Make a copy of the plain text password for later use
228
                # Make a copy of the plain text password for later use
229
                $self->plain_text_password( $self->password );
229
                $self->plain_text_password( $self->password );
230
230
231
                logaction( "MEMBERS", "CREATE", $self->borrowernumber, "" )
232
                  if C4::Context->preference("BorrowersLog");
233
234
                if ( C4::Context->preference('UseKohaPlugins') && C4::Context->config("enable_plugins") ) {
231
                if ( C4::Context->preference('UseKohaPlugins') && C4::Context->config("enable_plugins") ) {
235
                    # Call any check_password plugins
232
                    # Call any check_password plugins
236
                    my @plugins = Koha::Plugins->new()->GetPlugins({
233
                    my @plugins = Koha::Plugins->new()->GetPlugins({
Lines 265-270 sub store { Link Here
265
262
266
                $self->add_enrolment_fee_if_needed(0);
263
                $self->add_enrolment_fee_if_needed(0);
267
264
265
                logaction( "MEMBERS", "CREATE", $self->borrowernumber, "" )
266
                  if C4::Context->preference("BorrowersLog");
268
            }
267
            }
269
            else {    #ModMember
268
            else {    #ModMember
270
269
271
- 

Return to bug 22706