Quote:
Originally Posted by MrNase
Please report if it's working 
|
It works great. Except:
You say to replace
HTML Code:
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" /></div>
With
HTML Code:
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" <if condition="$show[usernamecheck]">
onblur="checkName(this.value,'')" /></if></div>
<if condition="$show[usernamecheck]">
<span class="registererrorhidden" id="nameCheckFailed">$vbphrase[registererror]</span>
<span class="registerokhidden" id="nameCheckOk">$vbphrase[registerok]</span>
</if>
This creates a malformed conditional. What you need to do is to remove the </div> tag from the search item so it would look like this
HTML Code:
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" />
Apart from that everything works brilliantly.