Skip to content

Commit

Permalink
Fixed issue #09187: Default value edit page - Set value for all langu…
Browse files Browse the repository at this point in the history
…ages is not working

Dev: shorten if statement
  • Loading branch information
kairavesloot committed Aug 28, 2014
1 parent a60e430 commit 825e92b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -162,7 +162,7 @@
{
echo '<li>';
echo CHtml::label($clang->gT('Use same default value across languages:'), 'samedefault'); // use gT - eT is not working, causes a wrong replacement in label
echo CHtml::checkBox('samedefault', ($questionrow['same_default']== 1) ? TRUE : FALSE );
echo CHtml::checkBox('samedefault', $questionrow['same_default']);
echo '</li>';
?>

Expand Down

0 comments on commit 825e92b

Please sign in to comment.