Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: acynonyxx on April 03, 2008, 03:09:10 AM

Title: Checking log for changed username
Post by: acynonyxx on April 03, 2008, 03:09:10 AM
Is there a way to see if someones username (login) was changed recently?

Thanks.
Title: Re: Checking log for changed username
Post by: Bulakbol on April 03, 2008, 04:56:49 AM
I don't think there is. I let my members change their display name but not their real name. It confuses others so I edited my who's online page using <acronym></acronym> that when you hover over their new display name, their real name pop-up. I only inform about the trick to those who complain.
Title: Re: Checking log for changed username
Post by: Bulakbol on April 04, 2008, 02:54:25 AM
Yes. default/Who.template.php. I only actually changed the 'name' to 'username' from
<span', $member['is_hidden'] ? ' style="font-style: italic;"' : '', '>', $member['is_guest'] ? $member['name'] : '<a href="' . $member['href'] . '" title="' . $txt['profile_of'] . ' ' . $member['name'] . '"' . (empty($member['color']) ? '' : ' style="color: ' . $member['color'] . '"') . '>' . $member['name'] . '</a>', '</span>';

to this.
<span', $member['is_hidden'] ? ' style="font-style: italic;"' : '', '>', $member['is_guest'] ? $member['name'] : '<a href="' . $member['href'] . '" title="' . $txt['profile_of'] . ' ' . $member['username'] . '"' . (empty($member['color']) ? '' : ' style="color: ' . $member['color'] . '"') . '>' . $member['name'] . '</a>', '</span>';

When you hover your mouse over the new display name, it will popup the "View profile of {realname}".
Title: Re: Checking log for changed username
Post by: SleePy on April 10, 2008, 01:37:17 PM
If you have admin/moderator and user logging enabled then you can view it in Profile -> Tracking.