Skip to content

Commit

Permalink
fix: corrected non-selectable inline disposition, closes #2421
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Apr 10, 2023
1 parent 008570e commit 6ed70ee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions phpmyfaq/admin/export.main.php
Expand Up @@ -105,17 +105,15 @@
<div class="offset-lg-2 col-lg-4">
<p><?= Translation::get('ad_export_download_view') ?></p>
<div class="form-check">
<input class="form-check-input" type="radio"
name="<?= HttpStreamer::EXPORT_DISPOSITION_ATTACHMENT; ?>"
<input class="form-check-input" type="radio" name="disposition"
id="<?= HttpStreamer::EXPORT_DISPOSITION_ATTACHMENT; ?>"
value="<?= HttpStreamer::EXPORT_DISPOSITION_ATTACHMENT ?>" checked>
<label class="form-check-label" for="<?= HttpStreamer::EXPORT_DISPOSITION_ATTACHMENT; ?>">
<?= Translation::get('ad_export_download') ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio"
name="<?= HttpStreamer::EXPORT_DISPOSITION_INLINE ?>"
<input class="form-check-input" type="radio" name="disposition"
id="<?= HttpStreamer::EXPORT_DISPOSITION_INLINE ?>"
value="<?= HttpStreamer::EXPORT_DISPOSITION_INLINE ?>">
<label class="form-check-label" for="<?= HttpStreamer::EXPORT_DISPOSITION_INLINE ?>">
Expand Down

0 comments on commit 6ed70ee

Please sign in to comment.