Skip to content

Commit

Permalink
Merge pull request #2626 from QuizandSurveyMaster/dev-zubair
Browse files Browse the repository at this point in the history
update changelog 9.1.2
  • Loading branch information
zubairraeen authored Aug 22, 2024
2 parents a5a6463 + 20bd24a commit db7e313
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mlw_quizmaster2.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Quiz And Survey Master
* Description: Easily and quickly add quizzes and surveys to your website.
* Version: 9.1.1
* Version: 9.1.2
* Author: ExpressTech
* Author URI: https://quizandsurveymaster.com/
* Plugin URI: https://expresstech.io/
Expand Down Expand Up @@ -43,7 +43,7 @@ class MLWQuizMasterNext {
* @var string
* @since 4.0.0
*/
public $version = '9.1.1';
public $version = '9.1.2';

/**
* QSM Alert Manager Object
Expand Down
2 changes: 1 addition & 1 deletion php/classes/class-qsm-fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public static function generate_multiple_fields_field( $fields, $value ) {
break;
case 'radio':
foreach ( $field["options"] as $option ) {
$isDisabled = isset( $option["disable"] ) && $option["disable"] == 1 ? ' disabled ' : '';
$isDisabled = isset( $option["disable"] ) && 1 == $option["disable"] ? ' disabled ' : '';
?>
<label class="qsm-option-label" for="<?php echo esc_attr( $key . '-' . $option["value"] ); ?>">
<input type="radio" id="<?php echo esc_attr( $key . '-' . $option["value"] ); ?>" name="<?php echo esc_attr( $key ); ?>" <?php echo esc_attr( $isDisabled ); ?> <?php checked( $option["value"], $value[ $key ] ); ?> value="<?php echo esc_attr( $option["value"] ); ?>" />
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: quiz, survey, test, exam, online assessment
Requires at least: 4.9
Tested up to: 6.6
Requires PHP: 5.4
Stable tag: 9.1.1
Stable tag: 9.1.2
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -188,7 +188,12 @@ QSM is designed to be compatible with most WordPress plugins and themes. However
17. QSM Pool Theme
18. Database

== Changelog ==
= 9.1.2 ( August 22, 2024 ) =
* Bug: Resolved issue preventing global settings from being saved
* Bug: Resolved progress bar issue in quiz popups
* Enhancement: Reordered real-time answer settings
* Enhancement: Added control in video shortcode

= 9.1.1 ( July 26, 2024 ) =
* Feature: Added option to blacklist email domains in contact form
* Bug: Fixed vulnerability with redirect result URL
Expand Down

0 comments on commit db7e313

Please sign in to comment.