Jump to content

[RESOLVED] Cart bug when selecting Domain transfer


Recommended Posts

Is this only me or a bug ? If someone can check this..

 

When I am trying to transfer a domain from

cart.php?a=add&domain=transfer

there are two options.

One for register and one for transfer.

 

Default checked is the transfer one. BUT if I check by mistake

or anything the register option it will forced to remain there. I

cannot change it back to transfer so I need to go back and

so on...

 

The code in .tpl of cart is the default one.:

<p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register<br />
<input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p>

 

Edit:

The opposite (from register link) doesnt occur. It is forced to register and if I click

Transfer it remains to Register radio button.

 

So it's happening only in transfer option for some reason.

 

Can someone verify / check this ?

Edited by chrismfz
Link to comment
Share on other sites

The correct fix is that the closing </label> is missing on the first line.

It should be like this

<p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register</label><br />
<input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p>

Link to comment
Share on other sites

The correct fix is that the closing </label> is missing on the first line.

It should be like this

<p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register</label><br />
<input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p>

that is right , i added that to that code but i forgot to mention that as well :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated