diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-07-15 23:46:10 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-07-15 23:48:31 +0100 |
commit | e6d90c87b655db6c33724e5fb3b4001963c63736 (patch) | |
tree | c4faaa0499937d55421c827a5cecedb167061338 | |
parent | 8a833dde23b0bbcf74643cc04e52165c63606e83 (diff) | |
download | gpigeon-e6d90c87b655db6c33724e5fb3b4001963c63736.tar.gz gpigeon-e6d90c87b655db6c33724e5fb3b4001963c63736.zip |
add enctype=multipart/form-data to link template
- I plan to remove the gpgid variable in
the future because the Mail::GPG mobile only
needs a mail to find the key and encrypt.
-rw-r--r-- | link-tmpl-template.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/link-tmpl-template.cgi b/link-tmpl-template.cgi index 94530ae..5c5237d 100644 --- a/link-tmpl-template.cgi +++ b/link-tmpl-template.cgi @@ -148,7 +148,7 @@ print qq{<!DOCTYPE html> </head> <body> <p id="msgbelow">{type_msg_below}:</p> - <form method="POST"> + <form method="POST" enctype="multipart/form-data"> <textarea id="msg" wrap="off" cols="50" rows="30" name="msg"></textarea><br> }; if (defined $error_processing_msg){ |