commit 4490ea332edcc0ed9491f7a7ed52e8170663b7c3
parent 71eb5d7e92cb99e477cff804564f6232b2b4c49f
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Sat, 14 Nov 2015 01:47:56 +0100
Merge branch 'master' of ssh://taler.net/var/git/merchant
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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");
};