https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36819 --- Comment #1 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- I tried to look at the db data before and after the change, and I don't see a difference. I thought maybe it was NULL and after it was filled with the correct values, but the values are already there... Layout 17 before step 13 MariaDB [koha_kohadev]> select * from creator_layouts where layout_id = 17 \G; *************************** 1. row *************************** layout_id: 17 barcode_type: CODE39 start_label: 1 printing_type: BIBBAR layout_name: Label Test guidebox: 0 oblique_title: 1 font: TR font_size: 3 scale_width: 0.080000 scale_height: 0.010000 units: POINT callnum_split: 0 text_justify: L format_string: title, author, isbn, issn, itemtype, barcode, itemcallnumber layout_xml: <opt></opt> creator: Labels 1 row in set (0.001 sec) Layout 17 after step 14 MariaDB [koha_kohadev]> select * from creator_layouts where layout_id = 17 \G; *************************** 1. row *************************** layout_id: 17 barcode_type: CODE39 start_label: 1 printing_type: BIBBAR layout_name: Label Test guidebox: 0 oblique_title: 1 font: TR font_size: 3 scale_width: 0.800000 scale_height: 0.010000 units: POINT callnum_split: 0 text_justify: L format_string: title, author, isbn, issn, itemtype, barcode, itemcallnumber layout_xml: <opt></opt> creator: Labels 1 row in set (0.000 sec) -- You are receiving this mail because: You are watching all bug changes.