Frédéric Delanoy : Paypal donations should use ' _donations' cmd value instead of '_xclick'.
Module: website Branch: master Commit: 9253307ddbb7bf353a9cae0370cac7d71d541d05 URL: http://source.winehq.org/git/website.git/?a=commit;h=9253307ddbb7bf353a9cae0... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Fri Jul 23 18:18:32 2010 +0200 Paypal donations should use '_donations' cmd value instead of '_xclick'. This allows in addition a better donation screen wording. See "Technical HTML Variables" on "HTML Variables for Website Payments Standard" page (https://cms.paypal.com/en/cgi-bin/?&cmd=_render-content&content_ID=developer...)
From 0a879430bfd49afe4d70ff2dd70ec834d49d0a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= <frederic.delanoy(a)gmail.com> Date: Fri, 23 Jul 2010 18:11:06 +0200 Subject: Paypal donations should use '_donations' cmd value instead of '_xclick'.
This is the PayPal preferred way; see doc on paypal. --- templates/de/home.template | 2 +- templates/en/home.template | 2 +- templates/es/home.template | 2 +- templates/fr/home.template | 2 +- templates/pl/home.template | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/de/home.template b/templates/de/home.template index c839178..b2693ad 100644 --- a/templates/de/home.template +++ b/templates/de/home.template @@ -42,7 +42,7 @@ </div> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="donateForm" style="margin: 0; padding: 0;"> - <input type="hidden" name="cmd" value="_xclick"> + <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="donate(a)winehq.org"> <input type="hidden" name="item_name" value="Wine donation"> </form> diff --git a/templates/en/home.template b/templates/en/home.template index 288e921..1feb78a 100644 --- a/templates/en/home.template +++ b/templates/en/home.template @@ -42,7 +42,7 @@ </div> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="donateForm" style="margin: 0; padding: 0;"> - <input type="hidden" name="cmd" value="_xclick"> + <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="donate(a)winehq.org"> <input type="hidden" name="item_name" value="Wine donation"> </form> diff --git a/templates/es/home.template b/templates/es/home.template index 8a5f42b..0b3a910 100644 --- a/templates/es/home.template +++ b/templates/es/home.template @@ -42,7 +42,7 @@ </div> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="donateForm" style="margin: 0; padding: 0;"> - <input type="hidden" name="cmd" value="_xclick"> + <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="donate(a)winehq.org"> <input type="hidden" name="item_name" value="Wine donation"> </form> diff --git a/templates/fr/home.template b/templates/fr/home.template index 2765775..71a78a7 100644 --- a/templates/fr/home.template +++ b/templates/fr/home.template @@ -42,7 +42,7 @@ </div> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="donateForm" style="margin: 0; padding: 0;"> - <input type="hidden" name="cmd" value="_xclick"> + <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="donate(a)winehq.org"> <input type="hidden" name="item_name" value="Wine donation"> </form> diff --git a/templates/pl/home.template b/templates/pl/home.template index 422eb94..3a018ac 100644 --- a/templates/pl/home.template +++ b/templates/pl/home.template @@ -42,7 +42,7 @@ </div> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="donateForm" style="margin: 0; padding: 0;"> - <input type="hidden" name="cmd" value="_xclick"> + <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="donate(a)winehq.org"> <input type="hidden" name="item_name" value="Wine donation"> </form>
participants (1)
-
Jeremy Newman