http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7245 --- Comment #9 from Frédéric Demians <frederic@tamil.fr> 2011-12-13 06:56:14 UTC --- (In reply to comment #8)
QA comment: I hesitate to mark failed QA but... there is a big mistake in the sql files: they are using short SQL statements: +INSERT INTO `itemtypes` VALUES ('BK', 'Libro',5,0,'bridge/book.gif',''); and not
+INSERT INTO `itemtypes` (field1, field2, field3, field4, field5,...) VALUES ('BK', 'Libro',5,0,'bridge/book.gif','');
it means that the next modification in itemtypes will result in this bug being reopened, because it will fail again.
Could you please fix the SQL and add the field names ?
marking failed QA,
You're right. it-IT/necessari/sample_itemtypes.sql contains incorrect SQL statements. But those statements are not introduced but this patch. There are already there in HEAD. IMO this issue should be covered by a separated bugzilla entry, and the attached patch should be applied since it fixes a real and current issue. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.