Hi,
I was trying to add the speaker metadata for the utterance regions in the BNC2014_spoken and noticed two bugs :
echo print_embiggenable_metadata_form($n_embiggenable_rows, false, 'createXmlIdlinkTableForm'.$x->handle);
=> the input elements for the categories get assigned to the form 'createXmlIdlinkTableFormu_who', whereas the the submit button referst to 'createXlIdlinkTableForm:u_who'
This resulted in the error message "Input file line 1: ERROR, incorrect number of columns (expected 1, got 25)."
Fix: Add colon after 'createXmlIdlinkTableForm
echo print_embiggenable_metadata_form($n_embiggenable_rows, false, 'createXmlIdlinkTableForm:'.$x->handle);
CQPweb v. 3.3.17
CWB 3.5.0
Best wishes,
Fabian
Fixed in commit 1849.
This is one of those embarrassing bugs that I would have spotted years ago if I used the embiggenable forms much myself - but I normally use templates. Alas. In any case, thanks to Fabian for the bug report.