Skip to content

Commit

Permalink
Fixed bug: Survey Name not displaying when $showsgqacode is false.
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@10966 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Sep 12, 2011
1 parent d8b0c94 commit 5488561
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/printablesurvey.php
Expand Up @@ -136,7 +136,7 @@ function try_debug($line)
}
else
{
$surveyname = "";
$surveyname = $surveyname;
}

$survey_output = array(
Expand Down Expand Up @@ -493,7 +493,7 @@ function star_replace($input)
{
$explanation .= $clang->gT("Answer was")." ";
}
$explanation .= " ".$distinctrow['value'];
$explanation .= " `".$distinctrow['value']."`";
}
if(!$distinctrow['cqid']) { // cqid == 0 ==> token attribute match
$tokenData = GetTokenFieldsAndNames($surveyid);
Expand Down Expand Up @@ -531,7 +531,7 @@ function star_replace($input)
{
$explanation .= $clang->gT("is")." ";
}
$answer_section = $distinctrow['value'];
$explanation .= " `".$distinctrow['value']."`";
}

$conquery="SELECT cid, cqid, q.title,\n"
Expand Down

0 comments on commit 5488561

Please sign in to comment.