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

Version Description

Upgrade for bug fixes.

Download this release

Release Info

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

Code changes from version 2.7.2 to 2.7.3

includes/mlw_qmn_credits.php CHANGED
@@ -91,7 +91,7 @@ function mlw_generate_about_page()
91
  <p>This update allows you to set the number of questions per page! Simply navigate to the Quiz Options tab and change the new "How many questions per page would you like?" option to the amount you would like. Set it to 0 to have all the quesitons on one page.</p>
92
  <br />
93
  <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Our Premium Add-Ons!</h2>
94
- <p>We have 4 new premium add-ons in our WordPress Store: Export Results (exports your quiz results), Extra Shortcodes (gives you extra shortcodes to use), User Dashboard (allow users to see the results from all the quizzes they have taken), and Advertisement Be Gone (gets rid of blue-border ads). Visit our <a href="http://mylocalwebstop.com/shop/">WordPress Store</a> for details! </p>
95
  <br />
96
  <h3>Changelog For <?php echo $mlw_quiz_version; ?></h3>
97
  <ul>
91
  <p>This update allows you to set the number of questions per page! Simply navigate to the Quiz Options tab and change the new "How many questions per page would you like?" option to the amount you would like. Set it to 0 to have all the quesitons on one page.</p>
92
  <br />
93
  <h2 style="margin: 1.1em 0 .2em;font-size: 2.4em;font-weight: 300;line-height: 1.3;text-align: center;">Our Premium Add-Ons!</h2>
94
+ <p>We have several new premium add-ons in our WordPress Store: MailChimp Integration (subscribes users to your Mailchimp list), Export Results (exports your quiz results), Extra Shortcodes (gives you extra shortcodes to use), User Dashboard (allow users to see the results from all the quizzes they have taken), and Advertisement Be Gone (gets rid of blue-border ads). Visit our <a href="http://mylocalwebstop.com/shop/">WordPress Store</a> for details! </p>
95
  <br />
96
  <h3>Changelog For <?php echo $mlw_quiz_version; ?></h3>
97
  <ul>
includes/mlw_quiz.php CHANGED
@@ -726,6 +726,9 @@ function mlw_quiz_shortcode($atts)
726
  $mlw_total_score = 0;
727
  $mlw_question_answers = "";
728
  isset($_POST["total_questions"]) ? $mlw_total_questions = intval($_POST["total_questions"]) : $mlw_total_questions = 0;
 
 
 
729
 
730
  //Update the amount of times the quiz has been taken
731
  $mlw_taken = $mlw_quiz_options->quiz_taken;
@@ -772,7 +775,6 @@ function mlw_quiz_shortcode($atts)
772
  }
773
  elseif ( $mlw_question->question_type == 3 )
774
  {
775
- $mlw_correct_text .= strval(htmlspecialchars_decode($mlw_question->answer_one, ENT_QUOTES));
776
  if (isset($_POST["question".$mlw_question->question_id]))
777
  {
778
  $mlw_user_answer = $_POST["question".$mlw_question->question_id];
@@ -785,6 +787,7 @@ function mlw_quiz_shortcode($atts)
785
  $mlw_qmn_question_answers_array = $mlw_qmn_loaded_answer_arrays[$mlw_question->question_id];
786
  foreach($mlw_qmn_question_answers_array as $mlw_qmn_question_answers_each)
787
  {
 
788
  if (strtoupper($mlw_user_answer) == strtoupper($mlw_qmn_question_answers_each[0]))
789
  {
790
  $mlw_correct += 1;
726
  $mlw_total_score = 0;
727
  $mlw_question_answers = "";
728
  isset($_POST["total_questions"]) ? $mlw_total_questions = intval($_POST["total_questions"]) : $mlw_total_questions = 0;
729
+
730
+ //Integration Action
731
+ do_action('mlw_qmn_load_results_page');
732
 
733
  //Update the amount of times the quiz has been taken
734
  $mlw_taken = $mlw_quiz_options->quiz_taken;
775
  }
776
  elseif ( $mlw_question->question_type == 3 )
777
  {
 
778
  if (isset($_POST["question".$mlw_question->question_id]))
779
  {
780
  $mlw_user_answer = $_POST["question".$mlw_question->question_id];
787
  $mlw_qmn_question_answers_array = $mlw_qmn_loaded_answer_arrays[$mlw_question->question_id];
788
  foreach($mlw_qmn_question_answers_array as $mlw_qmn_question_answers_each)
789
  {
790
+ $mlw_correct_text = strval(htmlspecialchars_decode($mlw_qmn_question_answers_each[0], ENT_QUOTES));
791
  if (strtoupper($mlw_user_answer) == strtoupper($mlw_qmn_question_answers_each[0]))
792
  {
793
  $mlw_correct += 1;
includes/mlw_update.php CHANGED
@@ -6,7 +6,7 @@ function mlw_quiz_update()
6
  {
7
 
8
  //Update this variable each update. This is what is checked when the plugin is deciding to run the upgrade script or not.
9
- $data = "2.7.2";
10
  if ( ! get_option('mlw_quiz_master_version'))
11
  {
12
  add_option('mlw_quiz_master_version' , $data);
6
  {
7
 
8
  //Update this variable each update. This is what is checked when the plugin is deciding to run the upgrade script or not.
9
+ $data = "2.7.3";
10
  if ( ! get_option('mlw_quiz_master_version'))
11
  {
12
  add_option('mlw_quiz_master_version' , $data);
mlw_quizmaster2.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Quiz Master Next
5
  Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
6
- Version: 2.7.2
7
  Author: Frank Corso
8
  Author URI: http://www.mylocalwebstop.com/
9
  Plugin URI: http://www.mylocalwebstop.com/
3
  /*
4
  Plugin Name: Quiz Master Next
5
  Description: Use this plugin to add multiple quizzes, tests, or surveys to your website.
6
+ Version: 2.7.3
7
  Author: Frank Corso
8
  Author URI: http://www.mylocalwebstop.com/
9
  Plugin URI: http://www.mylocalwebstop.com/
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: quiz, test, score, survey, contact, form, email, answer, question
5
  Requires at least: 3.5.1
6
  Tested up to: 3.9.1
7
- Stable tag: 2.7.2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  The easiest and most flexible way to add multiple quizzes, tests, and surveys to your website.
@@ -52,7 +52,8 @@ The plugin will **save** the results, the user's answers, the user's comments, a
52
  * Able to set up time limits on the quiz
53
  * And **Much** More...
54
 
55
- Be sure to check out all of our plugins in our Master Suite. Visit our plugins page for details: [My Local Webstop Plugins](http://mylocalwebstop.com/wordpress-plugins/)
 
56
 
57
 
58
  == Installation ==
@@ -103,6 +104,9 @@ Feel free to use the widget on the quiz dashboard within the plugin or from the
103
 
104
  == Changelog ==
105
 
 
 
 
106
  = 2.7.2 (May 18, 2014) =
107
  * Fixed Timer Not Restarting Bug
108
  * Fixed Tooltip Affecting Whole Page Bug
@@ -451,6 +455,9 @@ Feel free to use the widget on the quiz dashboard within the plugin or from the
451
 
452
  == Upgrade Notice ==
453
 
 
 
 
454
  = 2.7.2 =
455
  Upgrade for bug fixes.
456
 
4
  Tags: quiz, test, score, survey, contact, form, email, answer, question
5
  Requires at least: 3.5.1
6
  Tested up to: 3.9.1
7
+ Stable tag: 2.7.3
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  The easiest and most flexible way to add multiple quizzes, tests, and surveys to your website.
52
  * Able to set up time limits on the quiz
53
  * And **Much** More...
54
 
55
+ = Quiz Master Next Add-ons =
56
+ While Quiz Master Next is fully functional and is packed full of features that will meet the needs of most, we do offer vaious extra features and support available in our [Wordpress Store](http://mylocalwebstop.com/shop/)
57
 
58
 
59
  == Installation ==
104
 
105
  == Changelog ==
106
 
107
+ = 2.7.3 (May 19, 2014) =
108
+ * Fixed Open Answer Not Showing Correct Answer Bug
109
+
110
  = 2.7.2 (May 18, 2014) =
111
  * Fixed Timer Not Restarting Bug
112
  * Fixed Tooltip Affecting Whole Page Bug
455
 
456
  == Upgrade Notice ==
457
 
458
+ = 2.7.3 =
459
+ Upgrade for bug fixes.
460
+
461
  = 2.7.2 =
462
  Upgrade for bug fixes.
463