diff options
author | Jochen Neumeister <joneum@FreeBSD.org> | 2018-11-24 10:12:21 +0000 |
---|---|---|
committer | Jochen Neumeister <joneum@FreeBSD.org> | 2018-11-24 10:12:21 +0000 |
commit | 27de8a3823090939959543d86449d533d3e47fe2 (patch) | |
tree | cb61dcb2a946396280eff7475ce535a1bb759e7e /security/mailzu/files/patch-read__mail.php | |
parent | Update to 2.5.11 (diff) |
security/mailzu: Fix support for php 7.x
- Pass Maintainership to Submitter
PR: 230712
Submitted by: Krzysztof <ports@bsdserwis.com>
Sponsored by: Netzkommune GmbH
Differential Revision: https://reviews.freebsd.org/D17946
Notes
Notes:
svn path=/head/; revision=485752
Diffstat (limited to 'security/mailzu/files/patch-read__mail.php')
-rw-r--r-- | security/mailzu/files/patch-read__mail.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/mailzu/files/patch-read__mail.php b/security/mailzu/files/patch-read__mail.php new file mode 100644 index 000000000000..caef104d3e9a --- /dev/null +++ b/security/mailzu/files/patch-read__mail.php @@ -0,0 +1,11 @@ +--- read_mail.php.orig 2007-06-14 19:00:15 UTC ++++ read_mail.php +@@ -59,7 +59,7 @@ if ( ! $m->msg_found) { + } else { + + echo '<form name="messages_process_form" action="messagesProcessing.php" method="POST">'; +- echo ' <input type="hidden" name="mail_id_array[]" value="' . $mail_id . '_' . $recip_email . '">'; ++ echo ' <input type="hidden" name="mail_id_array[]" value="' . $mail_id . '__' . $recip_email . '">'; + echo ' <input type="hidden" name="query_string" value="' . $query_string . '">'; + printActionButtons(false); + echo '</form>'; |