Version Description
(December 28, 2018) = * Fixes issue causing broken quizzes on sites using older versions of WordPress
Download this release
Release Info
Developer | fpcorso |
Plugin | Quiz And Survey Master (Formerly Quiz Master Next) |
Version | 6.1.1 |
Comparing to | |
See all releases |
Code changes from version 6.1.0 to 6.1.1
- mlw_quizmaster2.php +7 -4
- readme.txt +4 -1
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: 6.1.
|
6 |
* Author: Frank Corso
|
7 |
* Author URI: https://www.quizandsurveymaster.com/
|
8 |
* Plugin URI: https://www.quizandsurveymaster.com/
|
9 |
* Text Domain: quiz-master-next
|
10 |
*
|
11 |
* @author Frank Corso
|
12 |
-
* @version 6.1.
|
13 |
* @package QSM
|
14 |
*/
|
15 |
|
@@ -33,7 +33,7 @@ class MLWQuizMasterNext {
|
|
33 |
* @var string
|
34 |
* @since 4.0.0
|
35 |
*/
|
36 |
-
public $version = '6.1.
|
37 |
|
38 |
/**
|
39 |
* QSM Alert Manager Object
|
@@ -149,7 +149,10 @@ class MLWQuizMasterNext {
|
|
149 |
include 'php/question-types.php';
|
150 |
include 'php/default-templates.php';
|
151 |
include 'php/shortcodes.php';
|
152 |
-
|
|
|
|
|
|
|
153 |
|
154 |
include 'php/classes/class-qmn-alert-manager.php';
|
155 |
$this->alertManager = new MlwQmnAlertManager();
|
2 |
/**
|
3 |
* Plugin Name: Quiz And Survey Master
|
4 |
* Description: Easily and quickly add quizzes and surveys to your website.
|
5 |
+
* Version: 6.1.1
|
6 |
* Author: Frank Corso
|
7 |
* Author URI: https://www.quizandsurveymaster.com/
|
8 |
* Plugin URI: https://www.quizandsurveymaster.com/
|
9 |
* Text Domain: quiz-master-next
|
10 |
*
|
11 |
* @author Frank Corso
|
12 |
+
* @version 6.1.1
|
13 |
* @package QSM
|
14 |
*/
|
15 |
|
33 |
* @var string
|
34 |
* @since 4.0.0
|
35 |
*/
|
36 |
+
public $version = '6.1.1';
|
37 |
|
38 |
/**
|
39 |
* QSM Alert Manager Object
|
149 |
include 'php/question-types.php';
|
150 |
include 'php/default-templates.php';
|
151 |
include 'php/shortcodes.php';
|
152 |
+
|
153 |
+
if ( function_exists( 'register_block_type' ) ) {
|
154 |
+
include 'blocks/block.php';
|
155 |
+
}
|
156 |
|
157 |
include 'php/classes/class-qmn-alert-manager.php';
|
158 |
$this->alertManager = new MlwQmnAlertManager();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: quiz, survey, lead, test, score, exam, questionnaire, question
|
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.0.2
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 6.1.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -111,6 +111,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
114 |
= 6.1.0 (December 26, 2018) =
|
115 |
* Adds new Gutenberg blocks
|
116 |
* Fixes undefined access at delete_question static function (Thanks [bpanatta](https://github.com/fpcorso/quiz_master_next/pull/746)!
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.0.2
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 6.1.1
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 6.1.1 (December 28, 2018) =
|
115 |
+
* Fixes issue causing broken quizzes on sites using older versions of WordPress
|
116 |
+
|
117 |
= 6.1.0 (December 26, 2018) =
|
118 |
* Adds new Gutenberg blocks
|
119 |
* Fixes undefined access at delete_question static function (Thanks [bpanatta](https://github.com/fpcorso/quiz_master_next/pull/746)!
|