1
solo71
Typo in modules/system/templates/system_userform.html
  • 2004/11/17 10:27

  • solo71

  • Module Developer

  • Posts: 941

  • Since: 2003/1/29


I don't know if this typo has been spotted yet, but here it is...

In the file modules/system/templates/system_userform.html

le="color: #000000"><?php <{$lang_youremail}> <input type="text" name="email" size="26" maxlength="60" />&nbsp;[u][b][size=x-large][color=FF0000]&nbsp[/color][/size][/b][/u]<input type="hidden" name="op" value="mailpasswd" /><input type="submit" value="<{$lang_sendpassword}>" />


ther is a ; missing. And this should be like :

le="color: #000000"><?php <{$lang_youremail}> <input type="text" name="email" size="26" maxlength="60" />&nbsp;[u][b][size=x-large][color=FF0000]&nbsp;[/color][/size][/b][/u]<input type="hidden" name="op" value="mailpasswd" /><input type="submit" value="<{$lang_sendpassword}>" />


*Scroll to see the correction


2
solo71
Re: Typo in modules/system/templates/system_userform.html
  • 2004/11/17 10:35

  • solo71

  • Module Developer

  • Posts: 941

  • Since: 2003/1/29


Found another one...

In the language/english/user.php, there is a typo as following :

le="color: #000000"><?php define('_US_NOTREGISTERED','Not registered? Click <a href=[u][b][color=FF0000]register.php[/color][/b][/u]>here</a>.');


Which should be

le="color: #000000"><?php define('_US_NOTREGISTERED','Not registered? Click <a href=[u][b][color=FF0000]"register.php"[/color][/b][/u]>here</a>.');


EDIT : This typo is worth for any language file (except if translator did corrected it - which I doubt...)