[Aimmath-developers] bug in try/Question and try/Quiz
Brought to you by:
gustav_delius,
npstrick
From: Gustav W D. <gu...@ma...> - 2003-09-16 20:23:41
|
Both try/Question and try/Quiz create the Seed: box with the following code: [["inputtext", "name" = "QuestionSeed", "value" = {"QuestionSeed"}, "onchange='seedchanged=true;'"]] This produces an input box with an extra unwanted ="true" in it (this is generated by the SetAttributes method of the HTML/Tag class). I therefore changed the code to: [["inputtext", "name" = "QuestionSeed", "value" = {"QuestionSeed"}, "onchange" = "seedchanged=true;"]] I have committed this to CVS to the HEAD branch but not yet to the AiM_3_0 branch because I am a bit worried that there must be a good reason for why it was in its original form. If there was and you know it, please warn me. Gustav |