Skip to content

Commit a30f510

Browse files
authored
/web/edit/mail/index.php: fix for new lines in autoreply
Because JSON is properly escaped now, see outroll/vesta@a8d857f
1 parent a8d857f commit a30f510

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

web/edit/mail/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
$autoreply_str = json_decode(implode('', $output), true);
7777
unset($output);
7878
$v_autoreply_message = $autoreply_str[$v_account]['MSG'];
79+
$v_autoreply_message=str_replace("\\n", "\n", $v_autoreply_message);
7980
}
8081
}
8182

0 commit comments

Comments
 (0)