Skip to content

Commit

Permalink
updated to 1.3.34
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbaseman committed May 29, 2020
1 parent 29a67b7 commit d4730d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ MODULE VERSION HISTORY
======================

------------------------------------------------------------------------------------------------------------------------
*** 1.3.34 (Martin Hecht: 29-May-2020)
fix typo in previous version (thanks to florian)

*** 1.3.33 (Martin Hecht: 28-May-2020)
replace {FIELD1}... placeholders in email body
added backticks in row 154 (thanks to Bianka)
Expand Down
2 changes: 1 addition & 1 deletion evalform.php
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ function eval_form($section_id) {
$email_subject = str_replace("{FIELD".$mpfid."}", $mpfval, $email_subject);
$success_email_subject = str_replace("{FIELD".$mpfid."}", $mpfval, $success_email_subject);
$email_text = str_replace("{FIELD".$mpfid."}", $mpfval, $email_text);
$success_email_text = str_replace("{FIELD".$mpfid."}", $mpfval, $success_email_txt);
$success_email_text = str_replace("{FIELD".$mpfid."}", $mpfval, $success_email_text);
}
$mpform_fields = $tmp_mpform_fields;
// Check if the user forgot to enter values into all the required fields
Expand Down

0 comments on commit d4730d0

Please sign in to comment.