fix: use print_escaped for radio button "checked"

use of p() results in escaped HTML code: checked="checked"
where it should be: checked="checked"
This commit is contained in:
ideaship 2014-03-06 16:03:00 +01:00
parent 1785c0c9b9
commit e08dbf80dc
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@
<input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>" />
<?php else: ?>
<input type="radio" name="dbtype" value="<?php p($type) ?>" id="<?php p($type) ?>"
<?php p($_['dbtype'] === $type ? 'checked="checked" ' : '') ?>/>
<?php print_unescaped($_['dbtype'] === $type ? 'checked="checked" ' : '') ?>/>
<label class="<?php p($type) ?>" for="<?php p($type) ?>"><?php p($label) ?></label>
<?php endif; ?>
<?php endforeach; ?>