MyBB Community Forums

Full Version: Reputation page: [ url ] links not rendering
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On a user's reputation page, the links to the threads aren't rendering, but are showing as open bbcode. I've noticed this for awhile.

Running 1.6.2
URL...??
(2011-02-24, 07:10 PM)MattRogowski Wrote: [ -> ]URL...??


[Image: Gf1Zw.png]
On further thought- it might have something to do with google SEO, as the URLs on the site don't look like ?pid= anymore.
MyCode is disabled in reputation comments by default.

Open reputation.php and find:
// Parse smilies in the reputation vote
$reputation_parser = array(
    "allow_html" => 0,
    "allow_mycode" => 0,
    "allow_smilies" => 1,
    "allow_imgcode" => 0
); 

Replace with:
// Parse smilies in the reputation vote
$reputation_parser = array(
    "allow_html" => 0,
    "allow_mycode" => 1,
    "allow_smilies" => 1,
    "allow_imgcode" => 0
); 
Interesting, Thanks AJS. I wonder why that is... and if so, why even have the URLs?
That's the comment so either your users are trying to put a URL or they're being left by a plugin?
Considering the fact both of the comments are in the exact same format but were given by different people, it looks like it's a plugin that's adding them.
yep. using fastrep. thank you.