Plugin Directory

Changeset 638075


Ignore:
Timestamp:
12/12/2012 09:55:34 PM (13 years ago)
Author:
gmichaelguy
Message:

3.0.4 upload

Location:
mtouch-quiz/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mtouch-quiz/trunk/mtouchquiz.php

    r618989 r638075  
    44Plugin URI: http://gmichaelguy.com/quizplugin/
    55Description: Create a multiple choice quiz (or exam). This plugin was written with learning and mobility in mind.  The quiz interface is touch friendly. You can: specify hints based on answer selection; give a detailed explanation of the solution; choose multiple correct answers; specify when the correct answers are displayed; specify if a question may be attempted only once or many times; specify point values for each question; include customized start and finish screens; randomly order questions and/or answers; and more.  This plugin was built by pillaging the Quizzin plugin written by Binny V A, but please do not blame him for my ruining his plugin!
    6 Version: 3.0.3
     6Version: 3.0.4
    77Author: G. Michael Guy
    88Author URI: http://gmichaelguy.com
     
    3333 */
    3434 
    35 define( 'mtq_VERSION', '3.0.3' );
     35define( 'mtq_VERSION', '3.0.4' );
    3636define( 'mtq_URL','http://gmichaelguy.com/quizplugin/');
    3737define( 'mtq_DISPLAY_NAME','mTouch Quiz');
  • mtouch-quiz/trunk/mtq_core_style.css

    r574359 r638075  
    394394    display:none;
    395395}
    396 #content .mtq, #content .mtq_auto, #content .mtq_quiz_name, #content .mtq_score, #content .mtq_total, #content .mtq_percentage, #content .mtq_wrong_answers, #content .mtq_time_allowed, #content .mtq_time_used, #container .mtq, #container .mtq_auto, #container .mtq_quiz_name, #container .mtq_score, #container .mtq_total, #container .mtq_percentage, #container .mtq_wrong_answers, #container .mtq_time_allowed, #container .mtq_time_used {
     396#content .mtq, #content .mtq_auto, #content .mtq_quiz_name, #content .mtq_score, #content .mtq_total, #content .mtq_percentage, #content .mtq_wrong_answers, #content .mtq_time_allowed, #content .mtq_time_used, #container .mtq, #container .mtq_auto, #container .mtq_quiz_name, #container .mtq_score, #container .mtq_total, #container .mtq_percentage, #container .mtq_wrong_answers, #container .mtq_time_allowed, #container .mtq_time_used, .mtq_auto {
    397397    display:none;
    398398}
  • mtouch-quiz/trunk/readme.txt

    r618989 r638075  
    44Tags: quiz, question, answer, test, touch, education, learning, elearning
    55Requires at least: 3.0
    6 Tested up to: 3.4.2
    7 Stable tag: 3.0.3
     6Tested up to: 3.5.0
     7Stable tag: 3.0.4
    88
    99mTouch Quiz lets you add quizzes to your site. This plugin was designed with learning, touch friendliness and versatility in mind.
     
    3939
    4040== Changelog ==
     41
     42= 3.0.3 =
     43* Compatibility with WP 3.5
     44* Updated French Translation (Thanks Capronnier Luc)
    4145
    4246= 3.0.2 =
     
    267271== Upgrade Notice ==
    268272
     273= 3.0.3 =
     274* Compatibility with WP 3.5
     275* Updated French Translation (Thanks Capronnier Luc)
     276
    269277= 3.0.2 =
    270278* COLOR THEMES!!
  • mtouch-quiz/trunk/show_quiz.php

    r574337 r638075  
    217217       
    218218        $mtq_all_vars = "";
    219         $number_questions_available = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}mtouchquiz_question WHERE quiz_id=$quiz_id"));
     219        $number_questions_available = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}mtouchquiz_question WHERE quiz_id=%d",$quiz_id));
    220220        if ($input_number_questions <= 0){ // If the user didn't specify the number of questions, then get them all
    221221            $input_number_questions = $number_questions_available;
Note: See TracChangeset for help on using the changeset viewer.