XF 2.1 Strange autopopulating problem with textboxrow

asprin

Active member
I've the following in my template:
HTML:
<xf:textboxrow name="new_username"
               value=""
               maxlength="{$max_chars}"
               label="New Username"
               explain="{$explain}" />

The resultant output is:
1591027510299.webp

Those appear to be unix timestamps but I'm not sure why they are being output to the screen. The only thing I'm sure of is that those times are 5.5 hrs behind my current time (i.e. UTC + 5.5 hours = my timezone)

If I put two textboxes in the template:
HTML:
<xf:textboxrow name="new_username2"
value=""
maxlength="{$max_chars}"
label="New Username2"
explain="{$explain}" />

<xf:textboxrow name="new_username"
value=""
maxlength="{$max_chars}"
label="New Username"
explain="{$explain}" />

The resultant output is:
1591027784796.webp

So from what I can tell, onload of page it's finding the form tag, then traversing to the first textbox in the form and populating it with two timestamps values :rolleyes:

This is driving my nuts o_O
 
Top Bottom