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

Version Description

(September 15, 2013) = * Bug Fixes

Download this release

Release Info

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

Code changes from version 0.4 to 0.4.1

includes/mlw_dashboard.php CHANGED
@@ -53,7 +53,7 @@ function mlw_generate_quiz_dashboard(){
53
  <div class="wrap">
54
  <h2>Quiz Master Next Dashboard<a id="opener" href="">(?)</a></h2>
55
 
56
- <h3>Version 0.4</h3>
57
  <p>Thank you for trying out my new plugin. I hope you find it beneficial to your website.</p>
58
 
59
  <div style="float:left; width:60%;" class="inner-sidebar1">
53
  <div class="wrap">
54
  <h2>Quiz Master Next Dashboard<a id="opener" href="">(?)</a></h2>
55
 
56
+ <h3>Version 0.4.1</h3>
57
  <p>Thank you for trying out my new plugin. I hope you find it beneficial to your website.</p>
58
 
59
  <div style="float:left; width:60%;" class="inner-sidebar1">
includes/mlw_main_page.php CHANGED
@@ -83,8 +83,9 @@ function mlw_generate_main_page()
83
  <div class="wrap">
84
  <h2>Quiz Master Next Support <a id="opener" href="">(?)</a></h2>
85
 
86
- <h3>Version 0.4</h3>
87
  <p>Thank you for trying out my new plugin. I hope you find it beneficial to your website.</p>
 
88
 
89
  <div style="float:left; width:60%;" class="inner-sidebar1">
90
  <?php do_meta_boxes('quiz_wpss3','advanced',''); ?>
@@ -160,13 +161,10 @@ function quiz_wpss_mrt_meta_box2()
160
  <div>
161
  <table width='100%'>
162
  <tr>
163
- <td align='left'>0.4 (September 13, 2013)</td>
164
  </tr>
165
  <tr>
166
- <td align='left'>* Add The Ability To Require Contact Information</td>
167
- </tr>
168
- <tr>
169
- <td align='left'>* Add Email Validating To Email Field</td>
170
  </tr>
171
  </table>
172
  </div>
83
  <div class="wrap">
84
  <h2>Quiz Master Next Support <a id="opener" href="">(?)</a></h2>
85
 
86
+ <h3>Version 0.4.1</h3>
87
  <p>Thank you for trying out my new plugin. I hope you find it beneficial to your website.</p>
88
+ <p>Please consider rating this plugin <a href="http://wordpress.org/support/view/plugin-reviews/quiz-master-next">here</a>.</p>
89
 
90
  <div style="float:left; width:60%;" class="inner-sidebar1">
91
  <?php do_meta_boxes('quiz_wpss3','advanced',''); ?>
161
  <div>
162
  <table width='100%'>
163
  <tr>
164
+ <td align='left'>0.4.1 (September 13, 2013)</td>
165
  </tr>
166
  <tr>
167
+ <td align='left'>* Bug Fixes</td>
 
 
 
168
  </tr>
169
  </table>
170
  </div>
includes/mlw_quiz_install.php CHANGED
@@ -201,6 +201,11 @@ function mlw_quiz_activate()
201
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
202
  dbDelta($sql);
203
  }
 
 
 
 
 
204
  }
205
 
206
  function mlw_quiz_deactivate()
201
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
202
  dbDelta($sql);
203
  }
204
+ $data = "0.4.1";
205
+ if ( ! get_option('mlw_quiz_master_version'))
206
+ {
207
+ add_option('mlw_quiz_master_version' , $data);
208
+ }
209
  }
210
 
211
  function mlw_quiz_deactivate()
mlw_quizmaster2.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Quiz Master Next
5
  Description: This adds a quiz function to your website. This is the new version of the wildly popular Quiz Master.
6
- Version: 0.4
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: This adds a quiz function to your website. This is the new version of the wildly popular Quiz Master.
6
+ Version: 0.4.1
7
  Author: Frank Corso
8
  Author URI: http://www.mylocalwebstop.com/
9
  Plugin URI: http://www.mylocalwebstop.com/
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: fpcorso
3
  Tags: quiz, test, score, survey
4
  Requires at least: 3.0.1
5
  Tested up to: 3.6.1
6
- Stable tag: 0.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -45,6 +45,9 @@ Feel free to use the support option on the main page of the plugin.
45
 
46
  == Changelog ==
47
 
 
 
 
48
  = 0.4 (September 13, 2013) =
49
  * Add The Ability To Require Contact Information
50
  * Add Email Validating To Email Field
3
  Tags: quiz, test, score, survey
4
  Requires at least: 3.0.1
5
  Tested up to: 3.6.1
6
+ Stable tag: 0.4.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
45
 
46
  == Changelog ==
47
 
48
+ = 0.4.1 (September 15, 2013) =
49
+ * Bug Fixes
50
+
51
  = 0.4 (September 13, 2013) =
52
  * Add The Ability To Require Contact Information
53
  * Add Email Validating To Email Field
uninstall.php CHANGED
@@ -24,4 +24,6 @@ global $wpdb;
24
  $sql = "DROP TABLE IF EXISTS ".$table_name;
25
 
26
  $results = $wpdb->query( $sql );
27
- ?>
 
 
24
  $sql = "DROP TABLE IF EXISTS ".$table_name;
25
 
26
  $results = $wpdb->query( $sql );
27
+
28
+ delete_option('mlw_quiz_master_version');
29
+ ?>