Changeset 2558899
- Timestamp:
- 07/05/2021 03:53:07 PM (5 years ago)
- Location:
- forms-by-made-it/trunk
- Files:
-
- 5 edited
-
admin/FormListTable.php (modified) (1 diff)
-
admin/InputListTable.php (modified) (1 diff)
-
admin/WP_MADEIT_FORM_admin.php (modified) (1 diff)
-
madeit-form.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
forms-by-made-it/trunk/admin/FormListTable.php
r2558890 r2558899 100 100 switch ($column_name) { 101 101 case 'title': 102 return $item->title;102 return esc_textarea($item->title); 103 103 case 'id': 104 104 return $item->id; -
forms-by-made-it/trunk/admin/InputListTable.php
r2558897 r2558899 156 156 ]; 157 157 158 return sprintf('<a href="?page=%s&action=%s&id=%s">%s</a> %s', 'madeit_form', 'edit', esc_textarea($form-> title), esc_textarea($form->title), $this->row_actions($actions));158 return sprintf('<a href="?page=%s&action=%s&id=%s">%s</a> %s', 'madeit_form', 'edit', esc_textarea($form->id), esc_textarea($form->title), $this->row_actions($actions)); 159 159 } 160 160 -
forms-by-made-it/trunk/admin/WP_MADEIT_FORM_admin.php
r2558890 r2558899 305 305 <select name="id"> 306 306 <?php foreach ($forms as $form) { ?> 307 <option value="<?php echo $form['id']; ?>"><?php echo $form['title']; ?></option>307 <option value="<?php echo $form['id']; ?>"><?php echo esc_textarea($form['title']); ?></option> 308 308 <?php } ?> 309 309 </select> -
forms-by-made-it/trunk/madeit-form.php
r2558897 r2558899 6 6 * Author: Made I.T. 7 7 * Author URI: https://www.madeit.be 8 * Version: 1.12. 28 * Version: 1.12.3 9 9 * Text Domain: forms-by-made-it 10 10 * Domain Path: /languages -
forms-by-made-it/trunk/readme.txt
r2558897 r2558899 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.2 8 Stable tag: 1.12. 28 Stable tag: 1.12.3 9 9 License: GNU GPL v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 48 48 49 49 == Changelog == 50 = 1.12.1, 1.12. 2=50 = 1.12.1, 1.12.3 = 51 51 * Fix XSS bug in Title field 52 52 * Fix delete form bug
Note: See TracChangeset
for help on using the changeset viewer.