MyBB Community Forums

Full Version: Potential security issue (when editing template)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm trying to make a link that will direct to the user's awards. Under the member_profile template, I have this:

<strong>Awards:</strong> {$lang->ougc_awards_profile_viewall} <a href="{$mybb->settings[\'bburl\']}/awards.php?user={$memprofile[\'uid\']}"></a>

I took it from this:
<td class="thead" colspan="2"><a style="float:right;" href="{$mybb->settings[\'bburl\']}/awards.php?user={$memprofile[\'uid\']}">{$lang->ougc_awards_profile_viewall}</a><strong>{$lang->ougc_awards_profile_title}</strong></td>

Any ideas what I would do to make that link work and direct to the user's awards?

Thanks.
try
<strong>Awards:</strong> {$lang->ougc_awards_profile_viewall} <a href="{$settings['bburl']}/awards.php?user={$memprofile['uid']}"></a>
Thanks! Using this now and it works great.

<strong>Awards:</strong> <a href="{$settings['bburl']}/awards.php?user={$memprofile['uid']}">View all</a>