I have users whom I know legitimately share the same computer, so I don't want to receive a PM each time they switch over. This small change to the mod hopefully prevents that from occuring.
I haven't tested this extensively yet, but I created an array for users whom I deem as "ok". Then a simple check to see if that user appears in the array, and if so, skip the multiple identity processing.
## Find:
if (!empty($user['U_Number']) && $user['U_Status'] != "Administrator") {
## Change to:
$users_ok = array(100, 101);
if (!empty($user['U_Number']) && $user['U_Status'] != "Administrator" && !in_array($user['U_Number'],$users_ok)) {
Note: 100 and 101 are example user IDs.
Does anyone see any problems with this? I wasn't sure if this is the best place to put the array for the users_ok check.