1 nealo May 18, 2006 15:30
3 john May 18, 2006 15:46
For a quick fix, just edit the post. It seems to fix it as well.
4 nealo May 18, 2006 15:56
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.
5 yabba May 18, 2006 16:08
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>
¥
6 nealo May 18, 2006 16:56
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>
?>
7 yabba May 18, 2006 17:03
Hmmm, wierd, I just tried it on a 0.9.0.12 install with no problems?
¥
8 john May 18, 2006 17:03
$comment_allowed_tags .= '<a>';
$comments_allowed_tags += array( 'a' => C_E_a_content ); // allowing <a>
Worked for me
9 nealo May 18, 2006 18:41
Ah ... it had something to do with my editor changing some of the text into symbols ... it works now. Thanks a lot guys!
10 yabba May 18, 2006 18:47
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
¥