Changeset 2094487
- Timestamp:
- 05/24/2019 11:51:59 AM (7 years ago)
- Location:
- chained-quiz/trunk
- Files:
-
- 3 edited
-
chained-quiz.php (modified) (1 diff)
-
models/question.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chained-quiz/trunk/chained-quiz.php
r2054591 r2094487 5 5 Description: Create a chained quiz where the upcoming questions can depend on the previous answer 6 6 Author: Kiboko Labs 7 Version: 1.1. 47 Version: 1.1.5 8 8 Author URI: http://calendarscripts.info/ 9 9 License: GPLv2 or later -
chained-quiz/trunk/models/question.php
r1974865 r2094487 115 115 function display_question($question) { 116 116 // for now only add stripslashes and autop, we'll soon add a filter like in Watupro 117 $content = stripslashes($question->question);117 $content = empty($question->question) ? stripslashes($question->title) : stripslashes($question->question); 118 118 $content = wpautop($content); 119 119 $content = do_shortcode($content); -
chained-quiz/trunk/readme.txt
r2086677 r2094487 103 103 == Changelog == 104 104 105 = Version 1.1. 4105 = Version 1.1.5 106 106 - Removed redundant Go Ahead button on the first question when the question is set to automatically continue. 107 107 - Fixed bug with missing "Go ahead" button when a multiple-choice question had "autocontinue" selected. … … 109 109 - Added option to change the text/value of the "Go Ahead" button from admin settings. 110 110 - Added option to mask taker IP address for GDPR compliance. 111 - If question content is empty use title. 111 112 112 113 = Version 1.1
Note: See TracChangeset
for help on using the changeset viewer.