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

(-)a/installer/onboarding.pl (-2 / +1 lines)
Lines 186-192 if ( $step == 3 ) { Link Here
186
186
187
            eval {
187
            eval {
188
                my $patron = Koha::Patron->new($patron_data)->store;
188
                my $patron = Koha::Patron->new($patron_data)->store;
189
                $patron->update_password($patron->userid, $firstpassword);
189
                $patron->set_password({ password =>  $firstpassword });
190
            };
190
            };
191
191
192
            #Error handling checking if the patron was created successfully
192
            #Error handling checking if the patron was created successfully
193
- 

Return to bug 22048