Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev zubair #2379

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading