Version Description
(November 27, 2017) = * IMPORTANT FIX: 5.1.4 had a fatal error for sites using out of date PHP versions. Please update to this!
Download this release
Release Info
Developer | fpcorso |
Plugin | Quiz And Survey Master (Formerly Quiz Master Next) |
Version | 5.1.5 |
Comparing to | |
See all releases |
Code changes from version 5.1.4 to 5.1.5
- mlw_quizmaster2.php +3 -3
- php/class-qmn-quiz-manager.php +1 -1
- readme.txt +6 -3
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: 5.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 5.1.
|
13 |
*/
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
@@ -29,7 +29,7 @@ class MLWQuizMasterNext {
|
|
29 |
* @var string
|
30 |
* @since 4.0.0
|
31 |
*/
|
32 |
-
public $version = '5.1.
|
33 |
|
34 |
/**
|
35 |
* 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: 5.1.5
|
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 5.1.5
|
13 |
*/
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
29 |
* @var string
|
30 |
* @since 4.0.0
|
31 |
*/
|
32 |
+
public $version = '5.1.5';
|
33 |
|
34 |
/**
|
35 |
* QSM Alert Manager Object
|
php/class-qmn-quiz-manager.php
CHANGED
@@ -69,7 +69,7 @@ class QMNQuizManager {
|
|
69 |
global $mlw_qmn_quiz;
|
70 |
$mlw_qmn_quiz = $quiz;
|
71 |
|
72 |
-
if ( !
|
73 |
date_default_timezone_set( get_option( 'timezone_string' ) );
|
74 |
}
|
75 |
$return_display = '';
|
69 |
global $mlw_qmn_quiz;
|
70 |
$mlw_qmn_quiz = $quiz;
|
71 |
|
72 |
+
if ( ! get_option( 'timezone_string' ) ) {
|
73 |
date_default_timezone_set( get_option( 'timezone_string' ) );
|
74 |
}
|
75 |
$return_display = '';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: quiz, survey, lead, test, score, exam, questionnaire, answer, question
|
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 5.1.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -110,6 +110,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
113 |
= 5.1.4 (November 27, 2017) =
|
114 |
* Closed Bug: Headers already sent message - ([Issue #596](https://github.com/fpcorso/quiz_master_next/issues/596))
|
115 |
* Closed Bug: Styling for hints is missing causing them to be hard to read - ([Issue #587](https://github.com/fpcorso/quiz_master_next/issues/587))
|
@@ -135,5 +138,5 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
|
|
135 |
|
136 |
== Upgrade Notice ==
|
137 |
|
138 |
-
= 5.1.
|
139 |
-
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 5.1.5
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 5.1.5 (November 27, 2017) =
|
114 |
+
* IMPORTANT FIX: 5.1.4 had a fatal error for sites using out of date PHP versions. Please update to this!
|
115 |
+
|
116 |
= 5.1.4 (November 27, 2017) =
|
117 |
* Closed Bug: Headers already sent message - ([Issue #596](https://github.com/fpcorso/quiz_master_next/issues/596))
|
118 |
* Closed Bug: Styling for hints is missing causing them to be hard to read - ([Issue #587](https://github.com/fpcorso/quiz_master_next/issues/587))
|
138 |
|
139 |
== Upgrade Notice ==
|
140 |
|
141 |
+
= 5.1.5 =
|
142 |
+
IMPORTANT FIX: 5.1.4 had a fatal error for sites using out of date PHP versions. Please update to this!
|