Skip to content

Commit

Permalink
Merge pull request #2379 from QuizandSurveyMaster/dev-zubair
Browse files Browse the repository at this point in the history
Dev zubair
  • Loading branch information
zubairraeen authored Oct 11, 2023
2 parents 846620a + 62944d4 commit eef3bdb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/parsing_script.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/qsm-admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -2068,7 +2068,7 @@ var import_button;
var quizID = parseInt(qsmTextTabObject.quiz_id);
var type = $("#question_type").val();
var comments = $("#comments").val();
var required = $(".questionElements input[name='required']").is(":checked") ? 0 : 1;
let required = $(".questionElements input[name='required']").is(":checked") ? 0 : 1;
advanced_option['required'] = required;
var category = $(".category-radio:checked").val();
var type_arr = [];
Expand Down
2 changes: 1 addition & 1 deletion php/admin/admin-dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ function qsm_dashboard_popular_addon( $widget_id ) {
<?php
if ( $all_addons ) {
foreach ( $all_addons as $key => $single_arr ) {
if ( in_array( $single_arr['name'], array( "Export & Import", "Reporting & Analysis", "Export Results", "Advanced Question Types" ), true ) ) {
if ( in_array( $single_arr['name'], array( "Export & Import", "Reporting and Analysis", "Export Results", "Advanced Question Types" ), true ) ) {
?>
<li>
<a href="<?php echo esc_url( qsm_get_utm_link( $single_arr['link'], 'dashboard', 'all_addon', sanitize_title( $single_arr['name'] ) ) ); ?>" target="_blank" rel="noopener">
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ This is usually a theme conflict. You can [checkout out our common conflict solu
18. Database

== Changelog ==
= 8.1.17 (October 09, 2023) =
= 8.1.17 (October 11, 2023) =
* Feature: Added option to include custom text when the answer choice limit exceeds in multiple response type questions.
* Feature: Added a new feature to accept shortcodes in the text set to display at the end of quizzes.
* Bug: Fixed issues with HTML tags in exported PDFs
Expand Down

0 comments on commit eef3bdb

Please sign in to comment.