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

Version Description

Upgrade to fix parse error on hosts with older PHP versions

Download this release

Release Info

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

Code changes from version 4.5.0 to 4.5.1

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.0
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.0
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.0';
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.1
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.1
14
  */
15
  if ( ! defined( 'ABSPATH' ) ) exit;
16
  /**
28
  * @var string
29
  * @since 4.0.0
30
  */
31
+ public $version = '4.5.1';
32
 
33
  /**
34
  * QMN Alert Manager Object
php/qmn_credits.php CHANGED
@@ -66,7 +66,7 @@ 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 7, 2015)</h3>
70
  <ul class="changelog">
71
  <!--
72
  Examples:
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:
php/qmn_options_questions_tab.php CHANGED
@@ -43,12 +43,13 @@ function mlw_options_questions_tab_content()
43
  $success = true;
44
  foreach( $list_of_questions as $id ) {
45
  $question_order++;
 
46
  $results = $wpdb->update(
47
  $wpdb->prefix . "mlw_questions",
48
  array(
49
  'question_order' => $question_order
50
  ),
51
- array( 'question_id' => explode( '_', $id )[1] ),
52
  array(
53
  '%d'
54
  ),
43
  $success = true;
44
  foreach( $list_of_questions as $id ) {
45
  $question_order++;
46
+ $update_question_id = explode( '_', $id );
47
  $results = $wpdb->update(
48
  $wpdb->prefix . "mlw_questions",
49
  array(
50
  'question_order' => $question_order
51
  ),
52
+ array( 'question_id' => $update_question_id[1] ),
53
  array(
54
  '%d'
55
  ),
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mylocalwebstop.com/downloads/donation-service-payment/
4
  Tags: quiz, test, score, exam, survey, contact, form, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.2.4
7
- Stable tag: 4.5.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -128,7 +128,10 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
128
 
129
  == Changelog ==
130
 
131
- = 4.5.0 (August 4, 2015) =
 
 
 
132
  * Added a brand new log system to track errors in the plugin. ([Github Issue #233](https://github.com/fpcorso/quiz_master_next/issues/233))
133
  * Added the ability to drag and drop questions when creating your quiz. ([Github Issue #235](https://github.com/fpcorso/quiz_master_next/issues/235))
134
  * Added new CSS template system for quizzes. ([Github Issue #234](https://github.com/fpcorso/quiz_master_next/issues/234))
@@ -174,6 +177,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
174
 
175
  == Upgrade Notice ==
176
 
 
 
 
177
  = 4.5.0 =
178
  Upgrade now for the ability to drag and drop questions to reorder, questions now only show relevent fields when adding/deleting them, and for the ability to search quiz results.
179
 
4
  Tags: quiz, test, score, exam, survey, contact, form, email, answer, question, certificate, points, results, math
5
  Requires at least: 3.8.1
6
  Tested up to: 4.2.4
7
+ Stable tag: 4.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
128
 
129
  == Changelog ==
130
 
131
+ = 4.5.1 (August 12, 2015) =
132
+ * Fixes parse error on hosts with older PHP versions
133
+
134
+ = 4.5.0 (August 11, 2015) =
135
  * Added a brand new log system to track errors in the plugin. ([Github Issue #233](https://github.com/fpcorso/quiz_master_next/issues/233))
136
  * Added the ability to drag and drop questions when creating your quiz. ([Github Issue #235](https://github.com/fpcorso/quiz_master_next/issues/235))
137
  * Added new CSS template system for quizzes. ([Github Issue #234](https://github.com/fpcorso/quiz_master_next/issues/234))
177
 
178
  == Upgrade Notice ==
179
 
180
+ = 4.5.1 =
181
+ Upgrade to fix parse error on hosts with older PHP versions
182
+
183
  = 4.5.0 =
184
  Upgrade now for the ability to drag and drop questions to reorder, questions now only show relevent fields when adding/deleting them, and for the ability to search quiz results.
185