Version Description
(November 2, 2013) = * Bug Fixes
Download this release
Release Info
Developer | fpcorso |
Plugin | Quiz And Survey Master (Formerly Quiz Master Next) |
Version | 0.6.1 |
Comparing to | |
See all releases |
Code changes from version 0.6 to 0.6.1
- includes/mlw_main_page.php +1 -10
- includes/mlw_quiz_admin.php +11 -1
- includes/mlw_quiz_install.php +1 -1
- mlw_quizmaster2.php +1 -1
- readme.txt +5 -2
includes/mlw_main_page.php
CHANGED
@@ -194,16 +194,7 @@ function quiz_wpss_mrt_meta_box2()
|
|
194 |
<div>
|
195 |
<table width='100%'>
|
196 |
<tr>
|
197 |
-
<td align='left'>0.6 (
|
198 |
-
</tr>
|
199 |
-
<tr>
|
200 |
-
<td align='left'>* Started Developing Quiz Leaderboards</td>
|
201 |
-
</tr>
|
202 |
-
<tr>
|
203 |
-
<td align='left'>* Added Ability To Save User Answers And Comments</td>
|
204 |
-
</tr>
|
205 |
-
<tr>
|
206 |
-
<td align='left'>* Added More Statistics To Quiz Dashboard</td>
|
207 |
</tr>
|
208 |
<tr>
|
209 |
<td align='left'>* Bug Fixes</td>
|
194 |
<div>
|
195 |
<table width='100%'>
|
196 |
<tr>
|
197 |
+
<td align='left'>0.6.1 (November 2, 2013)</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
</tr>
|
199 |
<tr>
|
200 |
<td align='left'>* Bug Fixes</td>
|
includes/mlw_quiz_admin.php
CHANGED
@@ -8,6 +8,16 @@ Copyright 2013, My Local Webstop (email : fpcorso@mylocalwebstop.com)
|
|
8 |
|
9 |
function mlw_generate_quiz_admin()
|
10 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
global $wpdb;
|
12 |
$table_name = $wpdb->prefix . "mlw_quizzes";
|
13 |
$success = $_POST["create_quiz"];
|
@@ -161,7 +171,7 @@ function mlw_generate_quiz_admin()
|
|
161 |
?>
|
162 |
<div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
|
163 |
<p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
|
164 |
-
<strong>Hey!</strong> Your new quiz has been created successfully. To begin editing
|
165 |
</div>
|
166 |
<?php
|
167 |
}
|
8 |
|
9 |
function mlw_generate_quiz_admin()
|
10 |
{
|
11 |
+
$data = "0.6.1";
|
12 |
+
if ( ! get_option('mlw_quiz_master_version'))
|
13 |
+
{
|
14 |
+
add_option('mlw_quiz_master_version' , $data);
|
15 |
+
}
|
16 |
+
else
|
17 |
+
{
|
18 |
+
update_option('mlw_quiz_master_version' , $data);
|
19 |
+
}
|
20 |
+
|
21 |
global $wpdb;
|
22 |
$table_name = $wpdb->prefix . "mlw_quizzes";
|
23 |
$success = $_POST["create_quiz"];
|
171 |
?>
|
172 |
<div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
|
173 |
<p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
|
174 |
+
<strong>Hey!</strong> Your new quiz has been created successfully. To begin editing options and adding questions to your quiz, click on the edit link for that quiz.</p>
|
175 |
</div>
|
176 |
<?php
|
177 |
}
|
includes/mlw_quiz_install.php
CHANGED
@@ -275,7 +275,7 @@ function mlw_quiz_activate()
|
|
275 |
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
276 |
dbDelta($sql);
|
277 |
}
|
278 |
-
$data = "0.6";
|
279 |
if ( ! get_option('mlw_quiz_master_version'))
|
280 |
{
|
281 |
add_option('mlw_quiz_master_version' , $data);
|
275 |
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
276 |
dbDelta($sql);
|
277 |
}
|
278 |
+
$data = "0.6.1";
|
279 |
if ( ! get_option('mlw_quiz_master_version'))
|
280 |
{
|
281 |
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: 0.6
|
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: 0.6.1
|
7 |
Author: Frank Corso
|
8 |
Author URI: http://www.mylocalwebstop.com/
|
9 |
Plugin URI: http://www.mylocalwebstop.com/
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: fpcorso
|
3 |
Tags: quiz, test, score, survey
|
4 |
Requires at least: 3.0.1
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 0.6
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -50,6 +50,9 @@ Feel free to use the support option on the main page of the plugin or from the c
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
53 |
= 0.6 (October 19, 2013) =
|
54 |
* Started Developing Quiz Leaderboards
|
55 |
* Added Ability To Save User Answers And Comments
|
2 |
Contributors: fpcorso
|
3 |
Tags: quiz, test, score, survey
|
4 |
Requires at least: 3.0.1
|
5 |
+
Tested up to: 3.7.1
|
6 |
+
Stable tag: 0.6.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 0.6.1 (November 2, 2013) =
|
54 |
+
* Bug Fixes
|
55 |
+
|
56 |
= 0.6 (October 19, 2013) =
|
57 |
* Started Developing Quiz Leaderboards
|
58 |
* Added Ability To Save User Answers And Comments
|