Skip to content

Commit

Permalink
text update
Browse files Browse the repository at this point in the history
  • Loading branch information
fayland committed Feb 11, 2014
1 parent 23ac76f commit 8946e72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -28,7 +28,7 @@
<span>
<input type='checkbox' name='module[eway_payment_type_visa]' value='1' {$CHECKED_eway_payment_type_visa_1} /> CC - Visa
<input type='checkbox' name='module[eway_payment_type_mastercard]' value='1' {$CHECKED_eway_payment_type_mastercard_1} /> CC - MasterCard
<input type='checkbox' name='module[eway_payment_type_diners]' value='1' {$CHECKED_eway_payment_type_diners_1} /> CC - Diners Clue
<input type='checkbox' name='module[eway_payment_type_diners]' value='1' {$CHECKED_eway_payment_type_diners_1} /> CC - Diners Club
<input type='checkbox' name='module[eway_payment_type_jcb]' value='1' {$CHECKED_eway_payment_type_jcb_1} /> CC - JCB
<input type='checkbox' name='module[eway_payment_type_amex]' value='1' {$CHECKED_eway_payment_type_amex_1} /> CC - Amex
</span>
Expand Down
Expand Up @@ -72,7 +72,7 @@
<td>
<input type='checkbox' name='eway_payment_type[]' value='visa' <?php if (in_array('visa', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - Visa
<input type='checkbox' name='eway_payment_type[]' value='mastercard' <?php if (in_array('mastercard', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - MasterCard
<input type='checkbox' name='eway_payment_type[]' value='diners' <?php if (in_array('diners', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - Diners Clue
<input type='checkbox' name='eway_payment_type[]' value='diners' <?php if (in_array('diners', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - Diners Club
<input type='checkbox' name='eway_payment_type[]' value='jcb' <?php if (in_array('jcb', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - JCB
<input type='checkbox' name='eway_payment_type[]' value='amex' <?php if (in_array('amex', $eway_payment_type)) { echo " checked='checked'"; } ?> /> CC - Amex
<input type='checkbox' name='eway_payment_type[]' value='paypal' <?php if (in_array('paypal', $eway_payment_type)) { echo " checked='checked'"; } ?> /> PayPal
Expand Down
Expand Up @@ -53,7 +53,7 @@
<div class="margin-form">
<input type='checkbox' name='paymenttype[]' value='visa' {if in_array('visa', $paymenttype)} checked='checked'{/if} /> CC - Visa
<input type='checkbox' name='paymenttype[]' value='mastercard' {if in_array('mastercard', $paymenttype)} checked='checked'{/if} /> CC - MasterCard
<input type='checkbox' name='paymenttype[]' value='diners' {if in_array('diners', $paymenttype)} checked='checked'{/if} /> CC - Diners Clue
<input type='checkbox' name='paymenttype[]' value='diners' {if in_array('diners', $paymenttype)} checked='checked'{/if} /> CC - Diners Club
<input type='checkbox' name='paymenttype[]' value='jcb' {if in_array('jcb', $paymenttype)} checked='checked'{/if} /> CC - JCB
<input type='checkbox' name='paymenttype[]' value='amex' {if in_array('amex', $paymenttype)} checked='checked'{/if} /> CC - Amex
<input type='checkbox' name='paymenttype[]' value='paypal' {if in_array('paypal', $paymenttype)} checked='checked'{/if} /> PayPal
Expand Down

0 comments on commit 8946e72

Please sign in to comment.