PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.2
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/FrmSettings.php +2 -3 6.46.2 View file →
@@ -119,9 +119,8 @@
119 119 'failed_msg' => __( 'We\'re sorry. It looks like you\'ve already submitted that.', 'formidable' ),
120 120 'submit_value' => __( 'Submit', 'formidable' ),
121 121 'login_msg' => __( 'You do not have permission to view this form.', 'formidable' ),
122 122 'admin_permission' => __( 'You do not have permission to do that', 'formidable' ),
123 - 'new_tab_msg' => __( 'The page has been opened in a new tab.', 'formidable' ),
124 123
125 124 'email_to' => '[admin_email]',
126 125 'no_ips' => 0,
127 126 'custom_header_ip' => false, // Use false by default. We show a warning when this is unset. Once global settings have been saved, this gets saved
@@ -340,11 +339,11 @@
340 339 */
341 340 private function update_settings( $params ) {
342 341 $this->active_captcha = $params['frm_active_captcha'];
343 342 $this->hcaptcha_pubkey = trim( $params['frm_hcaptcha_pubkey'] );
344 - $this->hcaptcha_privkey = trim( $params['frm_hcaptcha_privkey'] );
343 + $this->hcaptcha_privkey = $params['frm_hcaptcha_privkey'];
345 344 $this->pubkey = trim( $params['frm_pubkey'] );
346 - $this->privkey = trim( $params['frm_privkey'] );
345 + $this->privkey = $params['frm_privkey'];
347 346 $this->re_type = $params['frm_re_type'];
348 347 $this->re_lang = $params['frm_re_lang'];
349 348 $this->re_threshold = floatval( $params['frm_re_threshold'] );
350 349 $this->load_style = $params['frm_load_style'];