From c40d8990e0141f8b5aae106ac858f47eedeb0253 Mon Sep 17 00:00:00 2001 From: Mohammad Zubair Ali Date: Mon, 4 Nov 2024 11:41:50 +0530 Subject: [PATCH] fix php Deprecated warning --- php/template-variables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/template-variables.php b/php/template-variables.php index f5c8d985..bc31c2e8 100644 --- a/php/template-variables.php +++ b/php/template-variables.php @@ -1204,7 +1204,7 @@ function qsm_questions_answers_shortcode_to_text( $mlw_quiz_array, $qmn_question } else { $options[] = mb_strtoupper( htmlspecialchars_decode( $mlwQuizMasterNext->pluginHelper->qsm_language_support( $single_answer[0], 'answer-' . $answer['id'] . '-' . $key, 'QSM Answers' ), ENT_QUOTES ) ); } - $question_correct_fill_answer_text .= '(' . $key + 1 . ') ' . strval( $mlwQuizMasterNext->pluginHelper->qsm_language_support( $single_answer[0], 'answer-' . $answer['id'] . '-' . $key, 'QSM Answers' ) ) . ''; + $question_correct_fill_answer_text .= '(' . ($key + 1) . ') ' . strval( $mlwQuizMasterNext->pluginHelper->qsm_language_support( $single_answer[0], 'answer-' . $answer['id'] . '-' . $key, 'QSM Answers' ) ) . ''; } $is_any_incorrect = false; if ( sizeof( $new_array_user_answer ) < sizeof( $total_answers ) ) {