Skip to content

Commit

Permalink
Fixed issue #18259: add surveyId to select box (#2519)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbischof committed Aug 4, 2022
1 parent d027281 commit c8ffd47
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -25,7 +25,7 @@
<select name='survey_id' class='form-control'>
<?php foreach ($surveys as $survey): ?>
<?php if ($hasGlobalPermission || Permission::model()->hasSurveyPermission($survey->sid, 'tokens', 'update')): ?>
<option value='<?php echo $survey->sid; ?>'><?php echo $survey->languagesettings[$survey->language]->surveyls_title; ?></option>
<option value='<?php echo $survey->sid; ?>'><?php echo $survey->languagesettings[$survey->language]->surveyls_title; ?> (<?php echo $survey->sid; ?>)</option>
<?php endif; ?>
<?php endforeach; ?>
</select>
Expand Down

0 comments on commit c8ffd47

Please sign in to comment.