PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.32.51
E2Pdf – Export Pdf Tool for WordPress v1.32.51
1.32.51 1.32.49 1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 All 73 releases
← All changes | classes/view/blocks/bulk-actions.php +4 -5 1.00.001.32.51 View file →
@@ -4,13 +4,12 @@
4 4 }
5 5 ?>
6 6 <div class="alignleft actions bulkactions">
7 7 <label for="bulk-action-selector-top" class="screen-reader-text"><?php _e('Select bulk action', 'e2pdf'); ?></label>
8 - <select name="<?php echo $this->tpl_args->get('name'); ?>" id="bulk-action-selector-top">
8 + <select name="<?php echo esc_attr($this->tpl_args->get('name')); ?>" id="bulk-action-selector-top">
9 9 <option value="-1"><?php _e('Bulk Actions', 'e2pdf'); ?></option>
10 10 <?php foreach ($this->tpl_args->get('options') as $key => $value) { ?>
11 - <option value="<?php echo $key; ?>"><?php _e($value, 'e2pdf'); ?></option>
11 + <option value="<?php echo esc_attr($key); ?>"><?php echo esc_html($value); ?></option>
12 12 <?php } ?>
13 13 </select>
14 - <input type="submit" id="<?php echo $this->tpl_args->get('id'); ?>" class="button action" value="<?php _e('Apply', 'e2pdf'); ?>">
15 -</div>
16 -
14 + <input type="submit" id="<?php echo esc_attr($this->tpl_args->get('id')); ?>" class="button action" value="<?php _e('Apply', 'e2pdf'); ?>">
15 +</div>