Skip to content

Commit

Permalink
Fixed issue #7307: Token control not displayed when exporting results
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 2, 2013
1 parent 304b1b4 commit 99814c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/admin/export/exportresults_view.php
Expand Up @@ -118,7 +118,7 @@
} ?>
</select>
<br />&nbsp;</fieldset>
<?php if ($thissurvey['anonymized'] == "N" && tableExists("{{tokens_$surveyid}}") & hasSurveyPermission($surveyid,'token','read')) { ?>
<?php if ($thissurvey['anonymized'] == "N" && tableExists("{{tokens_$surveyid}}") && hasSurveyPermission($surveyid,'tokens','read')) { ?>
<fieldset><legend><?php $clang->eT("Token control");?></legend>
<?php $clang->eT("Choose token fields");?>:
<img src='<?php echo $imageurl;?>/help.gif' alt='<?php $clang->eT("Help");?>' onclick='javascript:alert("<?php $clang->gT("Your survey can export associated token data with each response. Select any additional fields you would like to export.","js");?>")' /><br />
Expand Down

0 comments on commit 99814c7

Please sign in to comment.