2013-09-13, 00:08:56
Hi RobA,
There's been a problem with quotations and inverted commas not being escaped when they exist in page titles, which causes the comments not to display properly.
I discussed a fix with Draxeiro via PM some time back which worked:
Just wanted to bring the bug to your attention.
There's been a problem with quotations and inverted commas not being escaped when they exist in page titles, which causes the comments not to display properly.
I discussed a fix with Draxeiro via PM some time back which worked:
Quote:Slight bug in the External Comments coding. Open up external_comments.php and replace lines 102-108 with the following:
PHP Code:/* fix (lines 102-108) */
$new_content .= '<div id="disqus_thread"></div>'."\n";
$new_content .= '<script type="text/javascript">'."\n";
$new_content .= 'var disqus_shortname = "'.$external_comments_conf['shortname'].'";'."\n";
$new_content .= 'var disqus_developer = "'.$external_comments_conf['developer'].'";'."\n";
$new_content .= 'var disqus_identifier = "'.$PostID.'";'."\n";
$new_content .= 'var disqus_url = "'.$PageURL.'";'."\n";
$new_content .= 'var disqus_title = "'.$PageTitle.'";'."\n";
Just wanted to bring the bug to your attention.