MyBB Community Forums

Full Version: Where is "{$post['profilelink']}"?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to take a look at where the name is placed in the template, does anyone know where I'd find it?
I don't really know how to identify through "{$post['profilelink']}" so if there is a quick tip, i'd appreciate help with that as well.
What are you trying to do?? The code itself is in the postbit and postbit_classic template, the link is generated in ./inc/functions_post.php on line 226:

$post['profilelink'] = build_profile_link($post['username_formatted'], $post['uid']);
(2010-07-16, 10:22 PM)MattRogowski Wrote: [ -> ]What are you trying to do?? The code itself is in the postbit and postbit_classic template, the link is generated in ./inc/functions_post.php on line 226:

$post['profilelink'] = build_profile_link($post['username_formatted'], $post['uid']);

I'm trying to make a modification
Fixed it thanks Wink.