Skip to content

Commit

Permalink
Fixed issue : Bad tip for multi numeric question type
Browse files Browse the repository at this point in the history
Dev: 4a761c3 child
Dev: #08320 refix
  • Loading branch information
Shnoulle committed Dec 4, 2013
1 parent 6314ca6 commit b7796d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/helpers/qanda_helper.php
Expand Up @@ -3348,7 +3348,7 @@ function do_multiplenumeric($ia)
$hidetip=$aQuestionAttributes['hide_tip'];
if ($slider_layout === true) // auto hide tip when using sliders
{
$hidetip=1;
//$hidetip=1;
}

if ($aQuestionAttributes['random_order']==1)
Expand Down Expand Up @@ -3516,11 +3516,11 @@ function do_multiplenumeric($ia)
$question_tip .= '<p class="tip">';
if ($slider_layout)
{
$question_tip .= $clang->gT('Only numbers may be entered in these fields');
$question_tip .= $clang->gT('Please click and drag the slider handles to enter your answer.');// Must be shown only in javascript
}
else
{
$question_tip .= $clang->gT('Please click and drag the slider handles to enter your answer.');
$question_tip .= $clang->gT('Only numbers may be entered in these fields');
}
$question_tip .= "</p>\n";

Expand Down

0 comments on commit b7796d8

Please sign in to comment.