Changeset 2558890
- Timestamp:
- 07/05/2021 03:22:59 PM (5 years ago)
- Location:
- forms-by-made-it/trunk
- Files:
-
- 4 edited
-
admin/FormListTable.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
r2242704 r2558890 131 131 ]; 132 132 133 return sprintf('<a href="?page=%s&action=%s&id=%s">%s</a> %s', $_REQUEST['page'], 'edit', $item->id, $item->title, $this->row_actions($actions));133 return sprintf('<a href="?page=%s&action=%s&id=%s">%s</a> %s', $_REQUEST['page'], 'edit', $item->id, esc_textarea($item->title), $this->row_actions($actions)); 134 134 } 135 135 -
forms-by-made-it/trunk/admin/WP_MADEIT_FORM_admin.php
r2427800 r2558890 113 113 <?php 114 114 } 115 if ( isset($_GET['action']) && $_GET['action'] == 'delete') {116 $this->db->queryWrite('DELETE FROM '.$this->db->prefix().'madeit_forms SET`id` = %s', $_GET['id']); ?>115 if ((isset($_GET['action']) && $_GET['action'] == 'delete') || (isset($_POST['madeit-forms-delete']) && isset($_GET['action']) && $_GET['action'] == 'edit')) { 116 $this->db->queryWrite('DELETE FROM '.$this->db->prefix().'madeit_forms WHERE `id` = %s', $_GET['id']); ?> 117 117 <div class="updated"><p><strong><?php echo __('The form is deleted.', 'forms-by-made-it'); ?></strong></p></div> 118 118 <?php 119 $_GET['action'] = 'delete'; 119 120 } 120 121 if (isset($_GET['action']) && $_GET['action'] == 'edit') { -
forms-by-made-it/trunk/madeit-form.php
r2507435 r2558890 6 6 * Author: Made I.T. 7 7 * Author URI: https://www.madeit.be 8 * Version: 1.12. 08 * Version: 1.12.1 9 9 * Text Domain: forms-by-made-it 10 10 * Domain Path: /languages -
forms-by-made-it/trunk/readme.txt
r2507435 r2558890 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.2 8 Stable tag: 1.12. 08 Stable tag: 1.12.1 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 = 51 * Fix XSS bug in Title field 52 * Fix delete form bug 53 50 54 = 1.12.0 = 51 55 * Email-service.be integration
Note: See TracChangeset
for help on using the changeset viewer.