UBB.Dev
Posted By: The Team Multi-email - 04/13/2001 9:55 AM
is it just me or does turning on allowing multipel emaisl actually turn it off and turnign it on actuallt turnsa it off

Posted By: The Team Re: Multi-email - 04/13/2001 9:57 AM
btw why is my name all lower case ine the above post is it a cookie issue?

Posted By: The Team Re: Multi-email - 04/13/2001 10:45 AM
i think i found another bug if you login and do not type the username as the same case as when you signed up it will work and youll be able to surf but you migth have issues with your user name not displaying correctly when you post and you wont be able to edit posts (the edit post button will show up but when you hit continue you will get an error is this a known bug?

Posted By: SitStay Re: Multi-email - 04/14/2001 1:25 AM
You can fix this problem this way (if you don't care that they logged in using a different case):

In modifypost.php at line 203 change:

if ( ($Username != $Postedby) && ($Status != "Administrator") && (!$check) ) {

to

if ( (strtolower($Username) != strtolower($Postedby)) && ($Status != "Administrator") && (!$check) ) {

Then case will be ignored at edit time.
Posted By: Rick Re: Multi-email - 04/14/2001 4:01 AM
Are you turning this on/off from the admin section or by hand editing the config files?
Posted By: The Team Re: Multi-email - 04/14/2001 7:57 AM
admin

Posted By: The Team Re: Multi-email - 04/14/2001 3:19 PM
This is a bug that I also reported/asked about. We fixed it last week and apparently, it wasn't a big deal to fix. I'll get the fix from our VP of Technology and post it asap.

Turning it on DID turn it off, you're right. At least, that's what happened when we turned it on.



http://www.howstuffworks.com
Towanda!
Posted By: The Team Re: Multi-email (how we fixed it) - 04/14/2001 4:58 PM
Igor B. (our VP of Technology) did this to fix this problem:
On line 98 or around.

Change

if ($config[multiuser] ) {

to

if (!$config[multiuser] ) {

-Igor


http://www.howstuffworks.com
Towanda!
Posted By: Panther Re: Multi-email - 04/18/2001 5:48 AM
The name problem we decided to just fix it so that the name is the correct case at login by reading the username from the database at login (and still have non-case sensitive names at login):

main.inc.php

if (!$CheckUser) {
$this -> not_right("$lang[NO_AUTH]",$Cat);
}

$Username = $user["U_Username"]; // *add* (Line 716)

$StyleSheet = $user["U_StyleSheet"];


Posted By: OWL_pokemon Re: Multi-email (how we fixed it) - 05/20/2001 2:18 AM
hm....which is the file to edit this?

cannot find that...

Posted By: Panther Re: Multi-email (how we fixed it) - 05/20/2001 3:07 PM
Ooops, sorry, that would help. :)
It's in main.inc.php.

Posted By: OWL_pokemon Re: Multi-email (how we fixed it) - 05/24/2001 11:05 AM
thx, but you said it in your posting above ;-)

I need zo know where hswbecca did the fix - cannot locate that :-(

© UBB.Developers