PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.11
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.11
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
← All changes | includes/admin/class-admin.php +1 -9 1.6.251.6.11 View file →
@@ -169,19 +169,11 @@
169 169 *
170 170 * @return void
171 171 */
172 172 public function export_form_entries() {
173 - if ( ! current_user_can( 'administrator' ) ) {
174 - wp_die( esc_html__( 'You do not have permission to export entries', 'weforms' ) );
175 - }
176 -
177 - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'weforms-export-entries' ) ) {
178 - wp_die( esc_html__( 'Invalid nonce', 'weforms' ) );
179 - }
180 -
181 173 $form_id = isset( $_REQUEST['selected_forms'] ) ? absint( $_REQUEST['selected_forms'] ) : 0;
182 174
183 - if ( ! $form_id ) {
175 + if ( !$form_id ) {
184 176 return;
185 177 }
186 178
187 179 $entry_array = [];