Version Description
Upgrade for minor bug fixes.
Download this release
Release Info
Developer | fpcorso |
Plugin | Quiz And Survey Master (Formerly Quiz Master Next) |
Version | 2.8.3 |
Comparing to | |
See all releases |
Code changes from version 2.8.2 to 2.8.3
- includes/mlw_qmn_credits.php +13 -5
- includes/mlw_quiz.php +5 -0
- includes/mlw_update.php +1 -1
- mlw_quizmaster2.php +1 -1
- readme.txt +8 -1
includes/mlw_qmn_credits.php
CHANGED
@@ -95,18 +95,26 @@ function mlw_generate_about_page()
|
|
95 |
<br />
|
96 |
<h3>Changelog For <?php echo $mlw_quiz_version; ?></h3>
|
97 |
<ul>
|
98 |
-
<li>
|
99 |
-
<li>Design Changes To Quiz Text Tab For Easier Navigation</li>
|
100 |
-
<li>Deleted How-To Page, Please Use Documentation On Our Website</li>
|
101 |
-
<li>Renamed Quiz Options Page As Quiz Settings To Avoid Confusion With Quiz Options Tab</li>
|
102 |
</ul>
|
103 |
-
<h3>
|
|
|
|
|
|
|
|
|
104 |
<ul>
|
105 |
<li>Importing Questions</li>
|
106 |
<li>Stats For Each Quiz</li>
|
107 |
<li>Force Login/Register Option</li>
|
108 |
<li>Categories</li>
|
109 |
<li>More Social Media Integration</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
</ul>
|
111 |
|
112 |
<div id="dialog" title="Help">
|
95 |
<br />
|
96 |
<h3>Changelog For <?php echo $mlw_quiz_version; ?></h3>
|
97 |
<ul>
|
98 |
+
<li>Minor Bug Fixes</li>
|
|
|
|
|
|
|
99 |
</ul>
|
100 |
+
<h3>Requested Features By Premium Support Users</h3>
|
101 |
+
<ul>
|
102 |
+
<li>None</li>
|
103 |
+
</ul>
|
104 |
+
<h3>Requested Features By Non-Premium Support Users</h3>
|
105 |
<ul>
|
106 |
<li>Importing Questions</li>
|
107 |
<li>Stats For Each Quiz</li>
|
108 |
<li>Force Login/Register Option</li>
|
109 |
<li>Categories</li>
|
110 |
<li>More Social Media Integration</li>
|
111 |
+
<li>Show Question Amount On Pagination</li>
|
112 |
+
<li>Edit Email Subject</li>
|
113 |
+
<li>Required Questions</li>
|
114 |
+
<li>Duplicate Question</li>
|
115 |
+
<li>Allow Quiz To Not Show Start Page</li>
|
116 |
+
<li>Progress Bar For Timer</li>
|
117 |
+
<li>Ability To Redirect User Instead Of Showing Results Page</li>
|
118 |
</ul>
|
119 |
|
120 |
<div id="dialog" title="Help">
|
includes/mlw_quiz.php
CHANGED
@@ -210,6 +210,8 @@ function mlw_quiz_shortcode($atts)
|
|
210 |
jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
|
211 |
}
|
212 |
window.mlw_previous = 0;
|
|
|
|
|
213 |
|
214 |
}
|
215 |
function prevSlide(mlw_pagination)
|
@@ -248,6 +250,8 @@ function mlw_quiz_shortcode($atts)
|
|
248 |
jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
|
249 |
}
|
250 |
window.mlw_previous = 1;
|
|
|
|
|
251 |
}
|
252 |
</script>
|
253 |
<?php
|
@@ -415,6 +419,7 @@ function mlw_quiz_shortcode($atts)
|
|
415 |
//Begin the quiz
|
416 |
$mlw_display .= "<div class='mlw_qmn_quiz'>";
|
417 |
$mlw_display .= "<form name='quizForm' action='' method='post' class='mlw_quiz_form' onsubmit='return mlw_validateForm()' >";
|
|
|
418 |
$mlw_display .= "<div class='quiz_section quiz_begin slide".$mlw_qmn_section_count."'>";
|
419 |
$mlw_message_before = htmlspecialchars_decode($mlw_quiz_options->message_before, ENT_QUOTES);
|
420 |
$mlw_message_before = str_replace( "%QUIZ_NAME%" , $mlw_quiz_options->quiz_name, $mlw_message_before);
|
210 |
jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
|
211 |
}
|
212 |
window.mlw_previous = 0;
|
213 |
+
window.location.hash = "mlw_does_not_exist";
|
214 |
+
window.location.hash = "mlw_top_of_quiz";
|
215 |
|
216 |
}
|
217 |
function prevSlide(mlw_pagination)
|
250 |
jQuery( ".quiz_section.slide"+window.mlw_quiz_slide ).show();
|
251 |
}
|
252 |
window.mlw_previous = 1;
|
253 |
+
window.location.hash = "mlw_does_not_exist";
|
254 |
+
window.location.hash = "mlw_top_of_quiz";
|
255 |
}
|
256 |
</script>
|
257 |
<?php
|
419 |
//Begin the quiz
|
420 |
$mlw_display .= "<div class='mlw_qmn_quiz'>";
|
421 |
$mlw_display .= "<form name='quizForm' action='' method='post' class='mlw_quiz_form' onsubmit='return mlw_validateForm()' >";
|
422 |
+
$mlw_display .= "<span id='mlw_top_of_quiz'></span>";
|
423 |
$mlw_display .= "<div class='quiz_section quiz_begin slide".$mlw_qmn_section_count."'>";
|
424 |
$mlw_message_before = htmlspecialchars_decode($mlw_quiz_options->message_before, ENT_QUOTES);
|
425 |
$mlw_message_before = str_replace( "%QUIZ_NAME%" , $mlw_quiz_options->quiz_name, $mlw_message_before);
|
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.8.
|
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.8.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.8.
|
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.8.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.7.1
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 2.8.
|
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.
|
@@ -104,6 +104,10 @@ Feel free to use the widget on the quiz dashboard within the plugin or from the
|
|
104 |
|
105 |
== Changelog ==
|
106 |
|
|
|
|
|
|
|
|
|
107 |
= 2.8.2 (May 28, 2014) =
|
108 |
* Minor Bug Fixes
|
109 |
|
@@ -464,6 +468,9 @@ Feel free to use the widget on the quiz dashboard within the plugin or from the
|
|
464 |
|
465 |
== Upgrade Notice ==
|
466 |
|
|
|
|
|
|
|
467 |
= 2.8.2 =
|
468 |
Upgrade for minor bug fixes.
|
469 |
|
4 |
Tags: quiz, test, score, survey, contact, form, email, answer, question
|
5 |
Requires at least: 3.7.1
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 2.8.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.
|
104 |
|
105 |
== Changelog ==
|
106 |
|
107 |
+
= 2.8.3 (June 8, 2014) =
|
108 |
+
* Next/Previous Buttons Now Scroll Page To Top Of Quiz
|
109 |
+
* Minor Bug Fixes
|
110 |
+
|
111 |
= 2.8.2 (May 28, 2014) =
|
112 |
* Minor Bug Fixes
|
113 |
|
468 |
|
469 |
== Upgrade Notice ==
|
470 |
|
471 |
+
= 2.8.3 =
|
472 |
+
Upgrade for minor bug fixes.
|
473 |
+
|
474 |
= 2.8.2 =
|
475 |
Upgrade for minor bug fixes.
|
476 |
|