https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15768
--- Comment #6 from Humberto Blanco <[email protected]> --- (In reply to Liz Rea from comment #1) > Hi Humberto, > > Are you using Koha with a translation installed? If so, which one? > > What are the exact parameters of the news item you are adding (i.e. the > vaules in all of the form fields)? > > Cheers, > Liz Dear Liz, I reviewed sql log and for the same news there are 11 inserts if you see all orders in the columns value are diferent. INSERT INTO opac_news ( title,timestamp,branchcode,new,borrowernumber,expirationdate,number,lang ) VALUES ( 'aa','2016-02-26',NULL,'<p>aa</p>','30981','2016-02-27','1','' ) INSERT INTO opac_news ( borrowernumber,expirationdate,number,lang,new,branchcode,timestamp,title ) VALUES ( '30981','2016-02-27','1','','<p>aa</p>',NULL,'2016-02-26','aa' ) INSERT INTO opac_news ( new,branchcode,number,lang,expirationdate,borrowernumber,timestamp,title ) VALUES ( '<p>aa</p>',NULL,'1','','2016-02-27','30981','2016-02-26','aa' ) INSERT INTO opac_news ( borrowernumber,number,lang,expirationdate,branchcode,new,title,timestamp ) VALUES ( '30981','1','','2016-02-27',NULL,'<p>aa</p>','aa','2016-02-26' ) INSERT INTO opac_news ( timestamp,title,branchcode,new,number,lang,expirationdate,borrowernumber ) VALUES ( '2016-02-26','aa',NULL,'<p>aa</p>','1','','2016-02-27','30981' ) INSERT INTO opac_news ( title,timestamp,borrowernumber,expirationdate,number,lang,branchcode,new ) VALUES ( 'aa','2016-02-26','30981','2016-02-27','1','',NULL,'<p>aa</p>' ) INSERT INTO opac_news ( timestamp,title,borrowernumber,expirationdate,number,lang,branchcode,new ) VALUES ( '2016-02-26','aa','30981','2016-02-27','1','',NULL,'<p>aa</p>' ) INSERT INTO opac_news ( timestamp,title,new,branchcode,number,lang,expirationdate,borrowernumber ) VALUES ( '2016-02-26','aa','<p>aa</p>',NULL,'1','','2016-02-27','30981' ) INSERT INTO opac_news ( branchcode,new,number,lang,expirationdate,borrowernumber,timestamp,title ) VALUES ( NULL,'<p>aa</p>','1','','2016-02-27','30981','2016-02-26','aa' ) INSERT INTO opac_news ( borrowernumber,number,lang,expirationdate,branchcode,new,title,timestamp ) VALUES ( '30981','1','','2016-02-27',NULL,'<p>aa</p>','aa','2016-02-26' ) INSERT INTO opac_news ( title,timestamp,borrowernumber,expirationdate,number,lang,new,branchcode ) VALUES ( 'aa','2016-02-26','30981','2016-02-27','1','','<p>aa</p>',NULL ) i think that maybe the number of branches can affect the results but have 13 branches and in all cases the branch is null. Any idea??, Thanks Humberto, -- 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/
