Posts made by Joseph Rézeau

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

Sorry, José, but the download.php file you attached belongs to the survey module, not the questionnaire module.

If it's OK for you to hack your Questionnaire files, here is how you can get the ratings to start at zero. In file questionnaire/locallib.php, version $Id: locallib.php,v 1.49.2.66 2009/12/26 10:29:30 joseph_rezeau Exp $

line 1371

change

if (is_numeric($q4)) {
$q4++;
}

to

if (is_numeric($q4)) {
$q4;
}

Joseph
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
OK, I understand the problem now. I'm afraid there is no satisfactory solution. But, in the example you provide, are you absolutely sure you need a 0-9 scale? Usually, this type of scale uses 1-5 which is amply enough. And why do you need to start with 0 rather than 1?
Joseph