PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.6.2
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.6.2
2.15.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 All 62 releases
← All changes | includes/Utils/Form.php +5 -5 trunk2.6.2 View file →
@@ -8,15 +8,15 @@
8 8 static function toggle($name, $value, $id, $small = false, $attrs = '')
9 9 {
10 10 ?>
11 11 <input type="hidden"
12 - name="<?php echo esc_attr($name) ?>"
12 + name="<?php echo $name ?>"
13 13 value="no"
14 14 >
15 15
16 16 <input type="checkbox"
17 - name="<?php echo esc_attr($name) ?>"
18 - id="<?php echo esc_attr($id) ?>"
17 + name="<?php echo $name ?>"
18 + id="<?php echo $id ?>"
19 19 class="hurryt-input-toggle <?php echo $small ? 'is-small' : '' ?>"
20 20 value="yes"
21 21 <?php echo $attrs ?>
22 22 <?php
@@ -37,13 +37,13 @@
37 37 ?>
38 38 <span class="hurrytimer-color-preview"></span>
39 39 <input
40 40 type="text"
41 - name="<?php echo esc_attr($name) ?>"
41 + name="<?php echo $name ?>"
42 42 placeholder="Select color"
43 43 autocomplete="off"
44 44 class="hurrytimer-color-input"
45 - value="<?php echo esc_attr($value) ?>" />
45 + value="<?php echo $value ?>" />
46 46 <span class="dashicons dashicons-no-alt hurrytimer-color-clear"></span>
47 47 <?php
48 48 }
49 49 }