Everest Forms – Easy Contact Form and Form Builder - Version 1.8.0.1

Version Description

  • 19-11-2021 =
  • Fix - Ajax submission redirect not working.
Download this release

Release Info

Developer everestforms
Plugin Icon 128x128 Everest Forms – Easy Contact Form and Form Builder
Version 1.8.0.1
Comparing to
See all releases

Code changes from version 1.8.0 to 1.8.0.1

everest-forms.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Everest Forms
4
  * Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
5
  * Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more.
6
- * Version: 1.8.0
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: everest-forms
3
  * Plugin Name: Everest Forms
4
  * Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
5
  * Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more.
6
+ * Version: 1.8.0.1
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: everest-forms
includes/admin/class-evf-admin-import-export.php CHANGED
@@ -30,7 +30,7 @@ class EVF_Admin_Import_Export {
30
  }
31
 
32
  // Nonce check.
33
- if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['everest-forms-export-nonce'] ), 'everest_forms_export_nonce' ) ) ) {
34
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
35
  }
36
 
30
  }
31
 
32
  // Nonce check.
33
+ if ( ! wp_verify_nonce( sanitize_key( wp_unslash( $_POST['everest-forms-export-nonce'] ) ), 'everest_forms_export_nonce' ) ) {
34
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
35
  }
36
 
includes/admin/class-evf-admin-notices.php CHANGED
@@ -116,7 +116,7 @@ class EVF_Admin_Notices {
116
  */
117
  public static function hide_notices() {
118
  if ( isset( $_GET['evf-hide-notice'] ) && isset( $_GET['_evf_notice_nonce'] ) ) {
119
- if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_evf_notice_nonce'] ), 'everest_forms_hide_notices_nonce' ) ) ) {
120
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
121
  }
122
 
116
  */
117
  public static function hide_notices() {
118
  if ( isset( $_GET['evf-hide-notice'] ) && isset( $_GET['_evf_notice_nonce'] ) ) {
119
+ if ( ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_evf_notice_nonce'] ) ), 'everest_forms_hide_notices_nonce' ) ) {
120
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
121
  }
122
 
includes/admin/class-evf-admin-tools.php CHANGED
@@ -161,7 +161,7 @@ class EVF_Admin_Tools {
161
  * Remove/delete the chosen file.
162
  */
163
  public static function remove_log() {
164
- if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ), 'remove_log' ) ) ) {
165
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
166
  }
167
 
161
  * Remove/delete the chosen file.
162
  */
163
  public static function remove_log() {
164
+ if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'remove_log' ) ) {
165
  wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'everest-forms' ) );
166
  }
167
 
includes/admin/class-evf-admin.php CHANGED
@@ -66,7 +66,7 @@ class EVF_Admin {
66
  $plugin = isset( $_REQUEST['plugin'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['plugin'] ) ) : false;
67
 
68
  if ( 'evf-addons-refresh' === $action ) {
69
- if ( empty( $_GET['evf-addons-nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['evf-addons-nonce'] ), 'refresh' ) ) ) {
70
  wp_die( esc_html_e( 'Could not verify nonce', 'everest-forms' ) );
71
  }
72
 
@@ -111,7 +111,7 @@ class EVF_Admin {
111
  $raw_templates = wp_safe_remote_get( 'https://raw.githubusercontent.com/wpeverest/extensions-json/master/everest-forms/templates/all_templates.json' );
112
 
113
  if ( 'evf-template-refresh' === $action && ! is_wp_error( $raw_templates ) ) {
114
- if ( empty( $_GET['evf-template-nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['evf-template-nonce'] ), 'refresh' ) ) ) {
115
  wp_die( esc_html_e( 'Could not verify nonce', 'everest-forms' ) );
116
  }
117
 
66
  $plugin = isset( $_REQUEST['plugin'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['plugin'] ) ) : false;
67
 
68
  if ( 'evf-addons-refresh' === $action ) {
69
+ if ( empty( $_GET['evf-addons-nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['evf-addons-nonce'] ) ), 'refresh' ) ) {
70
  wp_die( esc_html_e( 'Could not verify nonce', 'everest-forms' ) );
71
  }
72
 
111
  $raw_templates = wp_safe_remote_get( 'https://raw.githubusercontent.com/wpeverest/extensions-json/master/everest-forms/templates/all_templates.json' );
112
 
113
  if ( 'evf-template-refresh' === $action && ! is_wp_error( $raw_templates ) ) {
114
+ if ( empty( $_GET['evf-template-nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['evf-template-nonce'] ) ), 'refresh' ) ) {
115
  wp_die( esc_html_e( 'Could not verify nonce', 'everest-forms' ) );
116
  }
117
 
includes/class-everest-forms.php CHANGED
@@ -21,7 +21,7 @@ final class EverestForms {
21
  *
22
  * @var string
23
  */
24
- public $version = '1.8.0';
25
 
26
  /**
27
  * The single instance of the class.
21
  *
22
  * @var string
23
  */
24
+ public $version = '1.8.0.1';
25
 
26
  /**
27
  * The single instance of the class.
includes/class-evf-form-task.php CHANGED
@@ -374,7 +374,7 @@ class EVF_Form_Task {
374
  evf_add_notice( $message, 'success' );
375
  }
376
 
377
- $this->entry_confirmation_redirect( $this->form_data );
378
 
379
  return $response_data;
380
  } elseif ( ( 'same' === $this->form_data['settings']['redirect_to'] && empty( $submission_redirection_process ) ) || ( ! empty( $submission_redirection_process ) && 'same_page' == $submission_redirection_process['redirect_to'] ) ) {
374
  evf_add_notice( $message, 'success' );
375
  }
376
 
377
+ // $this->entry_confirmation_redirect( $this->form_data );
378
 
379
  return $response_data;
380
  } elseif ( ( 'same' === $this->form_data['settings']['redirect_to'] && empty( $submission_redirection_process ) ) || ( ! empty( $submission_redirection_process ) && 'same_page' == $submission_redirection_process['redirect_to'] ) ) {
languages/everest-forms.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Everest Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Everest Forms 1.8.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-17T05:37:58+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: everest-forms\n"
2
  # This file is distributed under the same license as the Everest Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Everest Forms 1.8.0.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-19T10:17:11+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: everest-forms\n"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: contact form, forms, form builder, contact, custom form
4
  Requires at least: 5.0
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
- Stable tag: 1.8.0
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -302,6 +302,9 @@ Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/eve
302
 
303
  == Changelog ==
304
 
 
 
 
305
  = 1.8.0 - 17-11-2021 =
306
  * Fix - Security issue.
307
  * Enhancement - Column adjustment pro feature dependency.
4
  Requires at least: 5.0
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
+ Stable tag: 1.8.0.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
302
 
303
  == Changelog ==
304
 
305
+ = 1.8.0.1 - 19-11-2021 =
306
+ * Fix - Ajax submission redirect not working.
307
+
308
  = 1.8.0 - 17-11-2021 =
309
  * Fix - Security issue.
310
  * Enhancement - Column adjustment pro feature dependency.