- CaptOblivious napisał: 04 May 2009, godzina 22:27
-
- CaptOblivious napisał: 04 May 2009, godzina 22:27
-
-
Thanks for this great plugin! I've added a little bit. I am trying out BuddyPress with FluxBB/PunBB. When a BuddyPress user updates her avatar, I want it to be updated in FluxBB/PunBB too. So I added the following to your code:
add_action('bp_core_avatar_save', 'fluxbb_save_avatar', 20, 4);
........
function fluxbb_save_avatar($id, $old, $v1_href, $avatarpath)
{
WHERE USER_ID = ".$id." AND META_KEY = 'bp_core_avatar_v1_path' LIMIT 1");
$temp = explode('.',$avatarpath);
$extension = end($temp);
copy($avatarpath, PUNPATH.'/img/avatars/'.$id.'.'.$extension);
}
-
You can't post new Topics
You can't post new Posts
You aren't a moderator