PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.19
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.19
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmUsage.php +2 -8 6.256.19 View file →
@@ -212,19 +212,13 @@
212 212 'menu',
213 213 'mu_menu',
214 214 'no_ips',
215 215 'custom_header_ip',
216 - 'enable_gdpr',
217 - 'no_gdpr_cookies',
218 216 'btsp_css',
219 217 'btsp_version',
220 218 'admin_bar',
221 219 'summary_emails',
222 220 'active_captcha',
223 - 'honeypot',
224 - 'wp_spam_check',
225 - 'denylist_check',
226 - 'email_style',
227 221 );
228 222
229 223 foreach ( $pass_settings as $setting ) {
230 224 if ( isset( $settings_list->$setting ) ) {
@@ -308,10 +302,10 @@
308 302 $forms = array();
309 303 $settings = array(
310 304 'form_class',
311 305 'akismet',
306 + 'honeypot',
312 307 'antispam',
313 - 'stopforumspam',
314 308 'custom_style',
315 309 'success_action',
316 310 'show_form',
317 311 'no_save',
@@ -426,9 +420,9 @@
426 420 'limit' => 50,
427 421 'order_by' => 'id DESC',
428 422 );
429 423
430 - $fields = FrmDb::get_results( 'frm_fields', array(), 'id, form_id, name, type, field_options', $args );
424 + $fields = FrmDb::get_results( 'frm_fields', array(), 'form_id, name, type, field_options', $args );
431 425 foreach ( $fields as $k => $field ) {
432 426 FrmAppHelper::unserialize_or_decode( $field->field_options );
433 427 $fields[ $k ]->field_options = json_encode( $field->field_options );
434 428 }