[git] gnupg-doc - branch, preview, updated. 403490a3dc6709caa55cdb6d5b515012043dfddd
by Werner Koch
cvs at cvs.gnupg.org
Tue May 16 19:28:19 CEST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GnuPG website and other docs".
The branch, preview has been updated
via 403490a3dc6709caa55cdb6d5b515012043dfddd (commit)
from 9f24d46db18c7ee98bd9febbdeff2b5c8be95f22 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 403490a3dc6709caa55cdb6d5b515012043dfddd
Author: Werner Koch <wk at gnupg.org>
Date: Tue May 16 19:25:01 2017 +0200
cgi: Fix commit a0822dd (preset var names)
diff --git a/cgi/procdonate.cgi b/cgi/procdonate.cgi
index a6dc28d..82bdddf 100755
--- a/cgi/procdonate.cgi
+++ b/cgi/procdonate.cgi
@@ -1030,13 +1030,13 @@ elsif ($mode eq 'preset') {
# Then look at arbitrary values
# No checking needed.
if ($q->param('s_amt') ne '') {
- $amount = int $q->param('s_amount');
+ $amount = int $q->param('s_amt');
}
if ($q->param('s_cur') ne '') {
- $currency = $q->param('s_currency');
+ $currency = $q->param('s_cur');
}
if ($q->param('s_pt') ne '') {
- $paytype = $q->param('s_paytype');
+ $paytype = $q->param('s_pt');
}
}
-----------------------------------------------------------------------
Summary of changes:
cgi/procdonate.cgi | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
The GnuPG website and other docs
http://git.gnupg.org
More information about the Gnupg-commits
mailing list