Changeset 638075
- Timestamp:
- 12/12/2012 09:55:34 PM (13 years ago)
- Location:
- mtouch-quiz/trunk
- Files:
-
- 4 edited
-
mtouchquiz.php (modified) (2 diffs)
-
mtq_core_style.css (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
show_quiz.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mtouch-quiz/trunk/mtouchquiz.php
r618989 r638075 4 4 Plugin URI: http://gmichaelguy.com/quizplugin/ 5 5 Description: 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. 36 Version: 3.0.4 7 7 Author: G. Michael Guy 8 8 Author URI: http://gmichaelguy.com … … 33 33 */ 34 34 35 define( 'mtq_VERSION', '3.0. 3' );35 define( 'mtq_VERSION', '3.0.4' ); 36 36 define( 'mtq_URL','http://gmichaelguy.com/quizplugin/'); 37 37 define( 'mtq_DISPLAY_NAME','mTouch Quiz'); -
mtouch-quiz/trunk/mtq_core_style.css
r574359 r638075 394 394 display:none; 395 395 } 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 { 397 397 display:none; 398 398 } -
mtouch-quiz/trunk/readme.txt
r618989 r638075 4 4 Tags: quiz, question, answer, test, touch, education, learning, elearning 5 5 Requires at least: 3.0 6 Tested up to: 3. 4.27 Stable tag: 3.0. 36 Tested up to: 3.5.0 7 Stable tag: 3.0.4 8 8 9 9 mTouch Quiz lets you add quizzes to your site. This plugin was designed with learning, touch friendliness and versatility in mind. … … 39 39 40 40 == Changelog == 41 42 = 3.0.3 = 43 * Compatibility with WP 3.5 44 * Updated French Translation (Thanks Capronnier Luc) 41 45 42 46 = 3.0.2 = … … 267 271 == Upgrade Notice == 268 272 273 = 3.0.3 = 274 * Compatibility with WP 3.5 275 * Updated French Translation (Thanks Capronnier Luc) 276 269 277 = 3.0.2 = 270 278 * COLOR THEMES!! -
mtouch-quiz/trunk/show_quiz.php
r574337 r638075 217 217 218 218 $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)); 220 220 if ($input_number_questions <= 0){ // If the user didn't specify the number of questions, then get them all 221 221 $input_number_questions = $number_questions_available;
Note: See TracChangeset
for help on using the changeset viewer.