Comments plugin links broken...
Posted: Thu Oct 02, 2003 3:30 am
On my blog the comments plugin in the sidebar created links that pointed to "blog/archives/##_article.html" which were always dead links. The actual archive URLs, as far is I can tell, should be "blog/archives/##_<entry-title>.html".
Changing line 128 of serendipity_plugin_comments.php from to fixes this problem.
What I can't figure out is, on Garvin's superBlog, the original "##_article.html" links are not dead. And I look inside my blog/archives/ directory and it's empty. I'm not really a web developer so I don't really get what's going on. Can someone shed some light on the issue?
Thanks.
Daniel
Changing line 128 of serendipity_plugin_comments.php from
Code: Select all
'<a class="highlight" href="/serendipity/archives/' . $row['entry_id'] . '_article.html" title="' . htmlentities($row['Subject']) . '">'Code: Select all
' <a class="highlight" href="'.serendipity_archiveURL($row['entry_id'], $row['Subject']).'" title="' . htmlentities($row['Subject']) . '">'What I can't figure out is, on Garvin's superBlog, the original "##_article.html" links are not dead. And I look inside my blog/archives/ directory and it's empty. I'm not really a web developer so I don't really get what's going on. Can someone shed some light on the issue?
Thanks.
Daniel