https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15835
--- Comment #1 from Jonathan Druart <[email protected]> --- Srdjan, what did you try exactly? I have tried the following: use Modern::Perl; use Koha::Borrowers; my $p = Koha::Borrowers->find(10); $p->set({firstname => 'my new firstname', surname => 'my new surname' })->store; then MariaDB [koha]> select firstname, surname from borrowers where borrowernumber=10; And I got my updated values. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
