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

Version Description

Upgrade to fix a issue with reseting the stats for Quiz Taken and Quiz Views. It was reseting to 1 instead of 0.

Download this release

Release Info

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

Code changes from version 4.5.2 to 4.5.3

mlw_quizmaster2.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Quiz Master Next
4
  * Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
5
- * Version: 4.5.2
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.quizmasternext.com/
@@ -10,7 +10,7 @@
10
  * Domain Path: /languages
11
  *
12
  * @author Frank Corso
13
- * @version 4.5.2
14
  */
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
  /**
@@ -28,7 +28,7 @@ class MLWQuizMasterNext
28
  * @var string
29
  * @since 4.0.0
30
  */
31
- public $version = '4.5.2';
32
 
33
  /**
34
  * QMN Alert Manager Object
2
  /**
3
  * Plugin Name: Quiz Master Next
4
  * Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
5
+ * Version: 4.5.3
6
  * Author: Frank Corso
7
  * Author URI: http://www.mylocalwebstop.com/
8
  * Plugin URI: http://www.quizmasternext.com/
10
  * Domain Path: /languages
11
  *
12
  * @author Frank Corso
13
+ * @version 4.5.3
14
  */
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
  /**
28
  * @var string
29
  * @since 4.0.0
30
  */
31
+ public $version = '4.5.3';
32
 
33
  /**
34
  * QMN Alert Manager Object
php/qmn_credits.php CHANGED
@@ -66,18 +66,14 @@ function mlw_generate_about_page()
66
  </div>
67
  <div id="mlw_quiz_changelog" class="qmn_tab" style="display: none;">
68
  <h2>Changelog</h2>
69
- <h3><?php echo $mlw_quiz_version; ?> (August 12, 2015)</h3>
70
  <ul class="changelog">
71
  <!--
72
  Examples:
73
  <li class="add"><div class="two">Add</div>Some feature was added</li>
74
  <li class="fixed"><div class="two">Fixed</div>Fixed some bug</li>
75
  -->
76
- <li class="add"><div class="two">Add</div>Ensured compatability with Wordpress version 4.3</li>
77
- <li class="fixed"><div class="two">Fixed</div>Fixed an issue when Contact details are set to Required and the user leaves the fields blank the quiz is still allowed to gets submitted in IE. <a href="https://github.com/fpcorso/quiz_master_next/issues/270">Issue 270</a></li>
78
-
79
-
80
-
81
  </ul>
82
  </div>
83
  <div id="qmn_contributors" class="qmn_tab" style="display:none;">
66
  </div>
67
  <div id="mlw_quiz_changelog" class="qmn_tab" style="display: none;">
68
  <h2>Changelog</h2>
69
+ <h3><?php echo $mlw_quiz_version; ?> (August 27, 2015)</h3>
70
  <ul class="changelog">
71
  <!--
72
  Examples:
73
  <li class="add"><div class="two">Add</div>Some feature was added</li>
74
  <li class="fixed"><div class="two">Fixed</div>Fixed some bug</li>
75
  -->
76
+ <li class="fixed"><div class="two">Fixed</div>* Fixed an issue where Quiz Views and Quiz Taken stats in the Quizzes screen was reseting to 1 instead of 0.</li>
 
 
 
 
77
  </ul>
78
  </div>
79
  <div id="qmn_contributors" class="qmn_tab" style="display:none;">
php/qmn_options_tools_tab.php CHANGED
@@ -33,8 +33,8 @@ function mlw_options_tools_tab_content()
33
  $results = $wpdb->update(
34
  $wpdb->prefix . "mlw_quizzes",
35
  array(
36
- 'quiz_views' => 1,
37
- 'quiz_taken' => 1,
38
  'last_activity' => date("Y-m-d H:i:s")
39
  ),
40
  array( 'quiz_id' => $mlw_reset_stats_quiz_id ),
33
  $results = $wpdb->update(
34
  $wpdb->prefix . "mlw_quizzes",
35
  array(
36
+ 'quiz_views' => 0,
37
+ 'quiz_taken' => 0,
38
  'last_activity' => date("Y-m-d H:i:s")
39
  ),
40
  array( 'quiz_id' => $mlw_reset_stats_quiz_id ),
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mylocalwebstop.com/downloads/donation-service-payment/
4
  Tags: quiz, survey, test, score, exam, questionnaire, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.3
7
- Stable tag: 4.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -131,6 +131,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
131
 
132
  == Changelog ==
133
 
 
 
 
134
  = 4.5.2 (August 14, 2015) =
135
  * Ensured compatibility with Wordpress version 4.3
136
  * Fixed an issue when Contact details are set to Required and the user leaves the fields blank the quiz is still allowed to gets submitted in IE. ([Github Issue #270](https://github.com/fpcorso/quiz_master_next/issues/270))
@@ -161,6 +164,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
161
 
162
  == Upgrade Notice ==
163
 
 
 
 
164
  = 4.5.2 =
165
  Upgrade to fix a Required error in IE and to ensure compatability with Wordpress version 4.3
166
 
4
  Tags: quiz, survey, test, score, exam, questionnaire, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.3
7
+ Stable tag: 4.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
131
 
132
  == Changelog ==
133
 
134
+ = 4.5.3 (August 21, 2015) =
135
+ * Fixed an issue where Quiz Views and Quiz Taken stats in the Quizzes screen was reseting to 1 instead of 0. ([Github Issue #233](https://github.com/fpcorso/quiz_master_next/issues/277))
136
+
137
  = 4.5.2 (August 14, 2015) =
138
  * Ensured compatibility with Wordpress version 4.3
139
  * Fixed an issue when Contact details are set to Required and the user leaves the fields blank the quiz is still allowed to gets submitted in IE. ([Github Issue #270](https://github.com/fpcorso/quiz_master_next/issues/270))
164
 
165
  == Upgrade Notice ==
166
 
167
+ = 4.5.3 =
168
+ Upgrade to fix a issue with reseting the stats for Quiz Taken and Quiz Views. It was reseting to 1 instead of 0.
169
+
170
  = 4.5.2 =
171
  Upgrade to fix a Required error in IE and to ensure compatability with Wordpress version 4.3
172