- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
array('code','length', 'min' => 1, 'max'=>5),
maxlength='5' size='6'
maxlength='5' size='5'
1) Update "varchar(5)" 'code' column in 'lime_answers' & 'lime labels' tables
2) Update application/models/Answer.php (#79)Code:array('code','length', 'min' => 1, 'max'=>5),
3) Update application/views/admin/labels/labelview_view.php (#75)Code:maxlength='5' size='6'
4) Update application/views/admin/survey/Question/answerOptions_view.php (lines #98 & #113)Code:maxlength='5' size='5'
ALTER TABLE `lime_answers` CHANGE `code` `code` VARCHAR(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT ''; ALTER TABLE `lime_labels` CHANGE `code` `code` VARCHAR(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '';
string(5)
As you already know, GNU GPL licensed softwares allow to adapt the code to fit all your needs, so it's easy to understand that you can't get everything (huge customization + keep receiving standard updates from the master branch)tammo wrote: Isn't this very dangerous, since when updating possibly one (disastrous!), multiple (also disastrous) or all these modified files may be overwritten?
I'm sorry but I'm not really sure about how answer your question for the following key reasons:tammo wrote: Shouldn't this be sent to the developers either as a change request, and when it is very important, with some money or as a well documented Pull Request?
TMSWhite wrote: At present, the main features which still need to be ported include:
- new tables to support item banking and standardization of items using LOINC and SNOMED
guillem wrote: [...]everything have to be properly labeled and interoperable.