diff --git a/documentation/changelog.html b/documentation/changelog.html
index 27ee3ee7a7..a60a7ff71b 100755
--- a/documentation/changelog.html
+++ b/documentation/changelog.html
@@ -90,6 +90,7 @@
Changed .rounded style from background: #ccc to border: 3px solid #CCCCCC in all styles
By creating a new course, will be enabled default, the option to display the chat in a new window
When installing the platform will be active by default the following options: Allow edit tutors in the courses of the sessions, social network and sending messages
+ When you add an answer in Multiple choice or Multiple answers the score default is zero
Known issues
diff --git a/main/exercice/multiple_answer.class.php b/main/exercice/multiple_answer.class.php
index 4f6f7f5ceb..cfcf1ffdf6 100755
--- a/main/exercice/multiple_answer.class.php
+++ b/main/exercice/multiple_answer.class.php
@@ -128,7 +128,7 @@ class MultipleAnswer extends Question {
$form->addElement('html_editor', 'comment['.$i.']',null, 'style="vertical-align:middle"', array('ToolbarSet' => 'TestProposedAnswer', 'Width' => '100%', 'Height' => '100'));
}
- $form->addElement('text', 'weighting['.$i.']',null, 'style="vertical-align:middle;margin-left: 0em;" size="5" value="10"');
+ $form->addElement('text', 'weighting['.$i.']',null, 'style="vertical-align:middle;margin-left: 0em;" size="5" value="0"');
$form -> addElement ('html', '');
}
$form -> addElement ('html', '');
diff --git a/main/exercice/unique_answer.class.php b/main/exercice/unique_answer.class.php
index 7cd0840d93..dccd06d8fb 100755
--- a/main/exercice/unique_answer.class.php
+++ b/main/exercice/unique_answer.class.php
@@ -234,7 +234,7 @@ class UniqueAnswer extends Question {
//$form->addElement('select', 'destination'.$i, get_lang('SelectQuestion').' : ',$select_question,'multiple');
- $form->addElement('text', 'weighting['.$i.']',null, 'style="vertical-align:middle;margin-left: 0em;" size="5" value="10"');
+ $form->addElement('text', 'weighting['.$i.']',null, 'style="vertical-align:middle;margin-left: 0em;" size="5" value="0"');
$form -> addElement ('html', '');
}