Skip to content

Commit

Permalink
Merge pull request #317 from fpcorso/dev
Browse files Browse the repository at this point in the history
Quick Bug Fix For IE Bug
  • Loading branch information
Frank Corso committed Oct 20, 2015
2 parents 90fe3c8 + 9b8ddd0 commit 5baf798
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions js/qmn_quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ function qmnValidation( element, quiz_form_id ) {
result = false;
}
}
if ( window.sessionStorage.getItem( 'mlw_time_quiz' + qmn_quiz_id ) === null ||
window.sessionStorage.getItem( 'mlw_time_quiz'+qmn_quiz_id ) > 0.08 ) {
if ( window.sessionStorage.getItem( 'mlw_time_quiz' + quiz_id ) === null ||
window.sessionStorage.getItem( 'mlw_time_quiz'+quiz_id ) > 0.08 ) {

if( jQuery( this ).attr( 'class' ).indexOf( 'mlwRequiredNumber' ) > -1 && this.value === "" && +this.value != NaN ) {
qmnDisplayError( number_error, jQuery( this ), quiz_form_id );
Expand Down
6 changes: 3 additions & 3 deletions mlw_quizmaster2.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
/**
* Plugin Name: Quiz And Survey Master
* Description: Easily and quickly add quizzes and surveys to your website.
* Version: 4.6.0
* Version: 4.6.1
* Author: Frank Corso
* Author URI: http://www.mylocalwebstop.com/
* Plugin URI: http://www.quizandsurveymaster.com/
* Text Domain: quiz-master-next
* Domain Path: /languages
*
* @author Frank Corso
* @version 4.6.0
* @version 4.6.1
*/
if ( ! defined( 'ABSPATH' ) ) exit;
/**
Expand All @@ -28,7 +28,7 @@ class MLWQuizMasterNext
* @var string
* @since 4.0.0
*/
public $version = '4.6.0';
public $version = '4.6.1';

/**
* QMN Alert Manager Object
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://mylocalwebstop.com/downloads/donation-service-payment/
Tags: quiz, survey, test, score, exam, questionnaire, email, answer, question, certificate, points, results, math
Requires at least: 3.8.1
Tested up to: 4.3
Stable tag: 4.6.0
Stable tag: 4.6.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -134,6 +134,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu

== Changelog ==

= 4.6.1 (October 20, 2015) =
* Bug fix for rare bug preventing IE usage on a small number of sites

= 4.6.0 (October 20, 2015) =
* Adds new dynamic form submission ([Github Issue #206](https://github.com/fpcorso/quiz_master_next/issues/206))
* Adds new From email address option ([Github Issue #312](https://github.com/fpcorso/quiz_master_next/issues/312))
Expand Down Expand Up @@ -163,6 +166,9 @@ This is usually a theme conflict. You can [checkout out our common conflict solu

== Upgrade Notice ==

= 4.6.1 =
Upgrade to fix rare bug preventing IE usage on a small number of sites.

= 4.6.0 =
Upgrade to use new dynamic form submission, from email addresses, reply-to options as well as bug fixes including redirect bug, timer bug, and more.

Expand Down

0 comments on commit 5baf798

Please sign in to comment.