Quiz And Survey Master (Formerly Quiz Master Next) - Version 7.3.4

Version Description

(October 1, 2021) = * Bug: Fixed the issue with validation of date field for contact section

Download this release

Release Info

Developer expresstech
Plugin Icon 128x128 Quiz And Survey Master (Formerly Quiz Master Next)
Version 7.3.4
Comparing to
See all releases

Code changes from version 7.3.3 to 7.3.4

mlw_quizmaster2.php CHANGED
@@ -2,14 +2,14 @@
2
  /**
3
  * Plugin Name: Quiz And Survey Master
4
  * Description: Easily and quickly add quizzes and surveys to your website.
5
- * Version: 7.3.3
6
  * Author: ExpressTech
7
  * Author URI: https://quizandsurveymaster.com/
8
  * Plugin URI: https://expresstech.io/
9
  * Text Domain: quiz-master-next
10
  *
11
  * @author QSM Team
12
- * @version 7.3.3
13
  * @package QSM
14
  */
15
 
@@ -41,7 +41,7 @@ class MLWQuizMasterNext {
41
  * @var string
42
  * @since 4.0.0
43
  */
44
- public $version = '7.3.3';
45
 
46
  /**
47
  * QSM Alert Manager Object
2
  /**
3
  * Plugin Name: Quiz And Survey Master
4
  * Description: Easily and quickly add quizzes and surveys to your website.
5
+ * Version: 7.3.4
6
  * Author: ExpressTech
7
  * Author URI: https://quizandsurveymaster.com/
8
  * Plugin URI: https://expresstech.io/
9
  * Text Domain: quiz-master-next
10
  *
11
  * @author QSM Team
12
+ * @version 7.3.4
13
  * @package QSM
14
  */
15
 
41
  * @var string
42
  * @since 4.0.0
43
  */
44
+ public $version = '7.3.4';
45
 
46
  /**
47
  * QSM Alert Manager Object
php/classes/class-qsm-contact-manager.php CHANGED
@@ -158,7 +158,7 @@ class QSM_Contact_Manager {
158
 
159
  case 'date':
160
  if ( ( 'true' === $fields[ $i ]["required"] || true === $fields[ $i ]["required"] ) && ! $fields_hidden ) {
161
- $class = 'mlwRequiredAccept qsm_required_accept';
162
  }
163
  ?>
164
  <span class='mlw_qmn_question qsm_question'><?php echo $fields[ $i ]['label']; ?></span>
158
 
159
  case 'date':
160
  if ( ( 'true' === $fields[ $i ]["required"] || true === $fields[ $i ]["required"] ) && ! $fields_hidden ) {
161
+ $class = 'mlwRequiredDate qsm_required_date';
162
  }
163
  ?>
164
  <span class='mlw_qmn_question qsm_question'><?php echo $fields[ $i ]['label']; ?></span>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: quiz, survey, lead, test, score, exam, questionnaire, question,wordpress q
4
  Requires at least: 4.9
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
- Stable tag: 7.3.3
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -151,6 +151,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
151
  18. Database
152
 
153
  == Changelog ==
 
 
 
154
  = 7.3.3 (October 1, 2021) =
155
  * Bug: Fixed the issue where %AVERAGE_CATEGORY_POINTS_X% was calculating total instead of average.
156
  * Bug: Fixed the issue where no category found for questions imported from question bank.
4
  Requires at least: 4.9
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
+ Stable tag: 7.3.4
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
151
  18. Database
152
 
153
  == Changelog ==
154
+ = 7.3.4 (October 1, 2021) =
155
+ * Bug: Fixed the issue with validation of date field for contact section
156
+
157
  = 7.3.3 (October 1, 2021) =
158
  * Bug: Fixed the issue where %AVERAGE_CATEGORY_POINTS_X% was calculating total instead of average.
159
  * Bug: Fixed the issue where no category found for questions imported from question bank.
templates/qmn_primary.css CHANGED
@@ -285,6 +285,7 @@ label.inline .mlw_qmn_question,
285
  .quiz_section.qmn_error input[type="email"],
286
  .quiz_section.qmn_error input[type="checkbox"],
287
  .quiz_section.qmn_error input[type="file"],
 
288
  .quiz_section.qmn_error select:hover,
289
  .quiz_section.qmn_error textarea:hover,
290
  .quiz_section.qmn_error input[type="text"]:hover,
@@ -292,13 +293,15 @@ label.inline .mlw_qmn_question,
292
  .quiz_section.qmn_error input[type="email"]:hover,
293
  .quiz_section.qmn_error input[type="checkbox"]:hover,
294
  .quiz_section.qmn_error input[type="file"]:hover,
 
295
  .quiz_section.qmn_error select:focus,
296
  .quiz_section.qmn_error textarea:focus,
297
  .quiz_section.qmn_error input[type="text"]:focus,
298
  .quiz_section.qmn_error input[type="number"]:focus,
299
  .quiz_section.qmn_error input[type="email"]:focus,
300
  .quiz_section.qmn_error input[type="checkbox"]:focus,
301
- .quiz_section.qmn_error input[type="file"]:focus {
 
302
  position: relative;
303
  border: 1px solid #da4f49;
304
  background: #F2DEDE;
285
  .quiz_section.qmn_error input[type="email"],
286
  .quiz_section.qmn_error input[type="checkbox"],
287
  .quiz_section.qmn_error input[type="file"],
288
+ .quiz_section.qmn_error input[type="date"],
289
  .quiz_section.qmn_error select:hover,
290
  .quiz_section.qmn_error textarea:hover,
291
  .quiz_section.qmn_error input[type="text"]:hover,
293
  .quiz_section.qmn_error input[type="email"]:hover,
294
  .quiz_section.qmn_error input[type="checkbox"]:hover,
295
  .quiz_section.qmn_error input[type="file"]:hover,
296
+ .quiz_section.qmn_error input[type="date"]:hover,
297
  .quiz_section.qmn_error select:focus,
298
  .quiz_section.qmn_error textarea:focus,
299
  .quiz_section.qmn_error input[type="text"]:focus,
300
  .quiz_section.qmn_error input[type="number"]:focus,
301
  .quiz_section.qmn_error input[type="email"]:focus,
302
  .quiz_section.qmn_error input[type="checkbox"]:focus,
303
+ .quiz_section.qmn_error input[type="file"]:focus
304
+ .quiz_section.qmn_error input[type="date"]:focus {
305
  position: relative;
306
  border: 1px solid #da4f49;
307
  background: #F2DEDE;