2 yabba May 18, 2006 15:45

For a quick fix, just edit the post. It seems to fix it as well.
Wow ... don't know how I missed that. I guess I got so used to it. Thanks for the quick responses: I'll try and search and find a way to add the link html.
I don't know if this only works in 1.6+ but, add this to the bottom of _formatting.php (before ?> obviously)
$comment_allowed_tags .= '<a>';
$comments_allowed_tags += array( 'a' => C_E_a_content ); // allowing <a>
¥
I tried it, but got this message:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /usr/local/4admin/apache/vhosts/autodogmatic.com/httpdocs/conf/_formatting.php on line 472
Here's how the bottom of formatting.php looks:
# ** RSS syndication options **
# these options are used by rdf.php (1.0), rss.php (0.92), and rss2.php (2.0)
# length (in words) of excerpts in the RSS feed? 0=unlimited
# Note: this will not apply to html content!
$rss_excerpt_length = 0;
$comment_allowed_tags .= '<a>';
$comments_allowed_tags += array( 'a' => C_E_a_content ); // allowing <a>
?>
Hmmm, wierd, I just tried it on a 0.9.0.12 install with no problems?
¥
$comment_allowed_tags .= '<a>';
$comments_allowed_tags += array( 'a' => C_E_a_content ); // allowing <a>
Worked for me
Ah ... it had something to do with my editor changing some of the text into symbols ... it works now. Thanks a lot guys!
No problem ;)
¥
They're the only tags that will be accepted in comments, if you want to add others then you need to hack conf/_formatting.php
¥