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

Version Description

(March 11, 2014) = * Minor Bug Fixes

Download this release

Release Info

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

Code changes from version 1.8.1 to 1.8.2

includes/mlw_quiz.php CHANGED
@@ -125,35 +125,10 @@ function mlw_quiz_shortcode($atts)
125
  }
126
  </script>
127
  <style type="text/css">
128
- input.submitButton
129
- {
130
- border: none;
131
- -moz-border-radius: 20px;
132
- -webkit-border-radius: 20px;
133
- -khtml-border-radius: 20px;
134
- border-radius: 20px;
135
- display: block;
136
- font: 18px Georgia, "Times New Roman", Times, serif;
137
- letter-spacing: 1px;
138
- margin: auto;
139
- padding: 7px 25px;
140
- text-shadow: 0 1px 1px #000000;
141
- text-transform: uppercase;
142
- cursor: pointer;
143
- }
144
- form.mlw_quiz_form input[type=radio] {
145
- float: left;
146
- margin-right: 10px;
147
  cursor: pointer;
148
  }
149
- form.mlw_quiz_form input[type=text],
150
- form.mlw_quiz_form textarea
151
- {
152
- -moz-border-radius: 20px;
153
- -webkit-border-radius: 20px;
154
- -khtml-border-radius: 20px;
155
- border-radius: 20px;
156
- }
157
  form.mlw_quiz_form input:not([type=submit]):focus,
158
  form.mlw_quiz_form textarea:focus {
159
  background: #eaeaea;
@@ -386,7 +361,7 @@ function mlw_quiz_shortcode($atts)
386
  $mlw_display .= "<input style='display: none;' type='text' name='email' id='email' />";
387
  $mlw_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
388
  $mlw_display .= "<input type='hidden' name='complete_quiz' value='confirmation' />";
389
- $mlw_display .= "<input type='submit' class='submitButton' value='".$mlw_quiz_options->submit_button_text."' />";
390
  $mlw_display .= "<span name='mlw_error_message_bottom' id='mlw_error_message_bottom' style='color: red;'></span><br />";
391
  $mlw_display .= "</form>";
392
 
125
  }
126
  </script>
127
  <style type="text/css">
128
+ form.mlw_quiz_form input[type=radio],
129
+ form.mlw_quiz_form input[type=submit] {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  cursor: pointer;
131
  }
 
 
 
 
 
 
 
 
132
  form.mlw_quiz_form input:not([type=submit]):focus,
133
  form.mlw_quiz_form textarea:focus {
134
  background: #eaeaea;
361
  $mlw_display .= "<input style='display: none;' type='text' name='email' id='email' />";
362
  $mlw_display .= "<input type='hidden' name='timer' id='timer' value='0'/>";
363
  $mlw_display .= "<input type='hidden' name='complete_quiz' value='confirmation' />";
364
+ $mlw_display .= "<input type='submit' value='".$mlw_quiz_options->submit_button_text."' />";
365
  $mlw_display .= "<span name='mlw_error_message_bottom' id='mlw_error_message_bottom' style='color: red;'></span><br />";
366
  $mlw_display .= "</form>";
367
 
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 = "1.8.1";
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 = "1.8.2";
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: 1.8.1
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: 1.8.2
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.3
6
  Tested up to: 3.8.1
7
- Stable tag: 1.8.1
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  Use this plugin to add multiple quizzes, tests, surveys, or contact forms to your website.
@@ -91,7 +91,10 @@ Feel free to use the widget on the quiz dashboard within the plugin or from the
91
 
92
  == Changelog ==
93
 
94
- = 1.8.1 (March 8, 2014) =
 
 
 
95
  * Added Customizable Text Section At End Of Quiz
96
  * Added Ability To Set Up Different Landing Pages Based On Score
97
  * Added Ability To Give Certificate After Quiz
4
  Tags: quiz, test, score, survey, contact, form, email, answer, question
5
  Requires at least: 3.3
6
  Tested up to: 3.8.1
7
+ Stable tag: 1.8.2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  Use this plugin to add multiple quizzes, tests, surveys, or contact forms to your website.
91
 
92
  == Changelog ==
93
 
94
+ = 1.8.2 (March 11, 2014) =
95
+ * Minor Bug Fixes
96
+
97
+ = 1.8.1 (March 10, 2014) =
98
  * Added Customizable Text Section At End Of Quiz
99
  * Added Ability To Set Up Different Landing Pages Based On Score
100
  * Added Ability To Give Certificate After Quiz