php forum
php mysql forum
php mysql smarty
 
Topic Options
#317632 - 10/27/08 07:51 AM [7.4] Keep log of custom title changes
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 310
Loc: The Netherlands
We work with a system where users request a title in a topic, and we set it for them.

Since it's a favor, and something they can demand we put restrictions on how often they can change that title.

This hack updates the usernotes of a user with every membertitle change so we can keep track of it.

open /admin/changeuser.php
find:
Code:
if (preg_match("/Moderator/",$user['USER_MEMBERSHIP_LEVEL'])) {
	$user_title = preg_replace("<","&lt;",$user_title);
} // end if


Replace with:
Code:
if (preg_match("/Moderator/",$user['USER_MEMBERSHIP_LEVEL'])) {
	$usertitle = preg_replace("<","&lt;",$usertitle);
} // end if

// Get current member title on the user we are editing
$query = "
	select USER_CUSTOM_TITLE
	from {$config['TABLE_PREFIX']}USER_PROFILE
	where USER_ID = ?
";
$sth = $dbh->do_placeholder_query($query,array($uid),__LINE__,__FILE__);
list($current_title) = $dbh->fetch_array($sth);

if ($current_title != $usertitle) {
	$notes .="\n".date("d/m/Y")." customtitle change (\"$current_title\" => \"$usertitle\")";
}


You might want to change the date format.
_________________________

Top
#317636 - 10/28/08 08:56 PM Re: [7.4] Keep log of custom title changes [Re: blaaskaak]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Pretty cool Yarp, thanks thumbsup
_________________________
- Allen wavey
- What Drives You?

Top


Moderator:  sirdude 
Who's Online
0 registered (), 26 Guests and 11 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Displaying a gif for a paying member
by Iann128
Today at 07:04 AM
Restore The "New Topic Is Highlighted" Feature
by hikelite
01/02/09 07:41 PM
Web Hosting
by Pilgrim
01/02/09 04:13 PM
Finishing touches on a UBB migration
by AllenAyres
01/02/09 03:04 PM
Sidebar options?
by Pilgrim
12/26/08 03:40 PM
Legacy Style
by sirdude
12/24/08 07:18 PM
ubb.social
by Placebo
12/21/08 07:30 AM
New Mods
Displaying a gif for a paying member
by Iann128
12/29/08 11:44 AM
Legacy Style
by Micky
12/21/08 01:36 PM
ubb.social
by
08/03/06 10:38 AM
Newest Members
bluedthunder, blaqskreen, RAICHU, sebak, BaronDriver
13371 Registered Users
Top Posters
AllenAyres 25461
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks