Skip to content

Commit

Permalink
Dev Workaround possibility for multilingual headers in dual scale
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@9168 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Oct 5, 2010
1 parent cfa1c3d commit abbb7e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qanda.php
Expand Up @@ -6196,7 +6196,7 @@ function do_array_dual($ia)
}

if (trim($qidattributes['dualscale_headerA'])!='') {
$leftheader= $qidattributes['dualscale_headerA'];
$leftheader= $clang->gT($qidattributes['dualscale_headerA']);
}
else
{
Expand All @@ -6205,7 +6205,7 @@ function do_array_dual($ia)

if (trim($qidattributes['dualscale_headerB'])!='')
{
$rightheader= $qidattributes['dualscale_headerB'];
$leftheader= $clang->gT($qidattributes['dualscale_headerB']);
}
else {
$rightheader ='';
Expand Down

0 comments on commit abbb7e1

Please sign in to comment.