| @@ -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']; |