Skip to content

Commit

Permalink
Dev Text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 9, 2023
1 parent 6c12ce6 commit 2915a35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -2144,7 +2144,7 @@ public static function getDefaultValues(int $iSurveyID, int $gid, int $qid)

$options = [];
if ($aQuestionAttributes['type'] == Question::QT_M_MULTIPLE_CHOICE || $aQuestionAttributes['type'] == Question::QT_P_MULTIPLE_CHOICE_WITH_COMMENTS) {
$options = ['' => gT('<No default value>'), 'Y' => gT('Checked')];
$options = ['' => gT('(No default value)'), 'Y' => gT('Checked')];
}

foreach ($sqresult as $aSubquestion) {
Expand Down
Expand Up @@ -64,7 +64,7 @@ public function run()
);

$aHtmlOptions = array(
'empty' => gT('<No default value>'),
'empty' => gT('(No default value)'),
'class' => $sElement_id . ' form-control',
'onchange' => '// show EM Value Field
if ($(this).val() == "EM"){
Expand Down
Expand Up @@ -39,7 +39,7 @@
<select class='form-control' name='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>'
id='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>'>
<option value=''<?php echo is_null($opts['defaultvalue']) ? ' selected="selected"' : '' ?>>
<?php eT('<No default value>') ?>
<?php eT('(No default value)') ?>
</option>
<?php foreach ($opts['answers'] as $answer) {
$sAnswer = $answer->answerl10ns[$language]->answer;
Expand Down

0 comments on commit 2915a35

Please sign in to comment.