On some systems, new comments code introduced in 4.5.17 will cause the contents of comments to display as empty. This will be fixed in 4.5.18.
For an immediate fix, a new version of /admin/includes/classes/class.helper.php is attached to this post which corrects the issue and may be applied to your site.
For those who prefer to patch via diffs, the following diff may be used:
Code:
--- class.helper.php Wed Sep 9 09:17:59 2009
+++ class.helper.php Wed Sep 9 09:17:59 2009
@@ -1136,7 +1136,7 @@
$output = $source;
// can't insert straight away because we do an htmlencode later, make a random placeholder and use that
- $wordbreak = '{WORDBREAK'. rand(10000, 99999) .'}';
+ $wordbreak = 'WBR' . rand(100000, 999999);
$chunkLen = 5;
// chunk comments up into blocks of $chunkLen chars for word-breaking