XF 2.0 Uncheck the stay logged in box

So I edited the login template and have achieved what I wanted. Maybe someone could tell me if this is the correct way to do this. Below is the section of the login template that I changed.

Before:

<xf:checkboxrow>
<xf:eek:ption name="remember" selected="true">{{ phrase('stay_logged_in') }}</xf:eek:ption>
</xf:checkboxrow>

After:

<xf:checkboxrow>
<xf:eek:ption name="remember" selected="false">{{ phrase('stay_logged_in') }}</xf:eek:ption>
</xf:checkboxrow>



Seems the site thought those were smilies in the middle of the code. The only part that matters to my question is changing the word true to false.
 
Back
Top Bottom