https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17196 --- Comment #24 from Mason James <mtj@kohaaloha.com> --- (In reply to Mason James from comment #23)
Hi Folks I have made some good progress testing this patch-set
I did hit a problem, when attempting to save a bib record via the cataloguing editor I added a "DBI->trace(2,'/tmp/some.log')" to the start of the ModBiblio() sub
When saving a bib, I noticed that there is no SQL in the log to UPDATE the 'biblio_metadata' table
a quick grep thru the dbi.log confirms this (i think?) $ grep UPDATE /tmp/some.log -> prepare for DBD::mysql::db (DBI::db=HASH(0x55203c8)~0x552f888 'UPDATE biblio SET frameworkcode=? WHERE biblionumber=?') thr#1a20010 -> dbd_st_prepare MYSQL_VERSION_ID 50550, SQL statement: UPDATE biblio SET frameworkcode=? WHERE biblionumber=?
count_params statement UPDATE biblio SET frameworkcode=? WHERE biblionumber=? parse_params statement UPDATE biblio SET frameworkcode=? WHERE biblionumber=? Binding parameters: UPDATE biblio SET frameworkcode='BKS' WHERE biblionumber='3449' UPDATE biblio UPDATE biblio UPDATE biblio UPDATE biblio Binding parameters: UPDATE biblio -> prepare for DBD::mysql::db (DBI::db=HASH(0x55203c8)~0x552f888 'UPDATE biblioitems -> dbd_st_prepare MYSQL_VERSION_ID 50550, SQL statement: UPDATE biblioitems count_params statement UPDATE biblioitems parse_params statement UPDATE biblioitems Binding parameters: UPDATE biblioitems
-- You are receiving this mail because: You are watching all bug changes.