SEO-Board: Free, Fast and Search Engine Optimization Friendly Forum Script
»User: »Password:   Remember Me? 
SEO-Board Forum Software Community / SEO-Board / Announcements / List of differences between versions RC1 and 1.0
Posted:  01 Apr 2005 18:19   Last Edited By: Hristo
I will keep a list of the changes from version 1.0RC1 to 1.0 in this post. I'll update it when I make a fix.

changed files:
/code/functions.php (function fix_forum_stats and is_user_moderator)
/code/skinning.php (function get_copyright to change the version text)
viewip.php (changed call to is_user_moderator function)
register.php and usercp.php (added an ignore case for one regular expression to allow uppercase emails)
Posted:  01 Apr 2005 23:50
Also...the lowercase username fix.
Posted:  02 Apr 2005 06:38
added it...
Posted:  06 Apr 2005 03:32
Could you point me to the fix for upper/lowercase usernames / emails aka post the changes made?

Thanks
Posted:  06 Apr 2005 09:01
Look in your register.php and usercp.php. There is a reg expr that checks for a valid email. It must end with 'i' to ignore case. In the very first version, it was case sensitive and the forum disallowed users with emails such as MyEmail@Domain.com

Correct code is:
Code:

  if (!preg_match('#^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$#i',$useremail)) $errormessage = get_error($lang['invalid_email']);


You probably have downloaded the fixed version.
Posted:  06 Apr 2005 15:05
Ah I see yes I had this version Btw. A suggestion would be to have some sort of detailed changelogs for the future as I am sure many people (like me) modify the code a lot and cannot just replace whole files. That's where a detailed changelog comes very handy
Posted:  07 Apr 2005 18:46
Quote:
A suggestion would be to have some sort of detailed changelogs for the future
yeah, yeah, I know. I will think of sth