Skip to content

Commit

Permalink
fixed a problem with the recaptcha form
Browse files Browse the repository at this point in the history
  • Loading branch information
MManthey committed Feb 1, 2024
1 parent 858cf74 commit 44e48cc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
This file hosts the complete changelog of this plugin.

## 1.7.16
* fixed a problem with the recaptcha form

## 1.7.15
* frontend step title bug fix

Expand Down
4 changes: 2 additions & 2 deletions includes/lib/partials/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
<input
type="hidden"
class="msf-recaptcha-token"
data-sitekey="<?php echo $captcha_key; ?>"
data-invisible="<?php echo $captcha_invisible ? "true" : "false"; ?>"
data-sitekey="<?php echo esc_attr($captcha_key); ?>"
data-invisible="<?php echo esc_attr($captcha_invisible) ? "true" : "false"; ?>"
>
<br/><br/>
<div
Expand Down
4 changes: 2 additions & 2 deletions mondula-form-wizard.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
* Plugin Name: Multi Step Form
* Version: 1.7.15
* Version: 1.7.16
* Plugin URI: http://www.mondula.com/
* Description: Create and embed Multi Step Form.
* Author: Mondula GmbH
Expand Down Expand Up @@ -82,7 +82,7 @@ function msf_drop_tables($tables = array(), $blog_id = null) {
* @return object Mondula_Form_Wizard
*/
function Mondula_Form_Wizard() {
$instance = Mondula_Form_Wizard::instance(__FILE__, '1.7.15');
$instance = Mondula_Form_Wizard::instance(__FILE__, '1.7.16');

if (is_null($instance->settings)) {
$instance->settings = Mondula_Form_Wizard_Settings::instance($instance);
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mondula2016
Tags: multi, step, forms, multi step form, multi-step, steps, feedback, email, contact form, progress bar, form builder, dynamic, ajax, formular
Requires at least: 5.0
Tested up to: 6.3.1
Stable tag: 1.7.15
Stable tag: 1.7.16
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -84,6 +84,9 @@ A. **[Find them here](https://mondula.com/en/multi-step-form-faqs/ "Multi Step

== Changelog ==

= 1.7.16 =
* fixed a problem with the recaptcha form

= 1.7.15 =
* frontend step title bug fix

Expand Down

0 comments on commit 44e48cc

Please sign in to comment.