summaryrefslogtreecommitdiff
path: root/src/frontend/checkout.php
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-14 01:47:56 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-14 01:47:56 +0100
commit4490ea332edcc0ed9491f7a7ed52e8170663b7c3 (patch)
tree598c98deb95e316cfbd7c21b5b0af6507b80c3d4 /src/frontend/checkout.php
parent71eb5d7e92cb99e477cff804564f6232b2b4c49f (diff)
parent8352946980b30e0023baf6d839b1fe04bc42343d (diff)
downloadmerchant-4490ea332edcc0ed9491f7a7ed52e8170663b7c3.tar.gz
merchant-4490ea332edcc0ed9491f7a7ed52e8170663b7c3.tar.bz2
merchant-4490ea332edcc0ed9491f7a7ed52e8170663b7c3.zip
Merge branch 'master' of ssh://taler.net/var/git/merchant
Diffstat (limited to 'src/frontend/checkout.php')
-rw-r--r--src/frontend/checkout.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frontend/checkout.php b/src/frontend/checkout.php
index abb0a6e3..dff6d508 100644
--- a/src/frontend/checkout.php
+++ b/src/frontend/checkout.php
@@ -62,7 +62,7 @@
<form name="tform" action="" method="POST">
<div id="opt-form" align="left"><br>
- <input type="radio" name="payment_system" value="lisa" checked>Lisa</input>
+ <input type="radio" name="payment_system" value="lisa">Lisa</input>
<br>
<input type="radio" name="payment_system" value="ycard">You Card</input>
<br>
@@ -151,6 +151,7 @@ function has_taler_wallet_cb(aEvent)
// enable the Taler payment option from the form
var tbutton = document.getElementById("taler-radio-button-id");
tbutton.removeAttribute("disabled");
+ tbutton.setAttribute("checked", "true");
};