Hello,

In IE6, when no revisions are pending, the Revision Moderation block displays its title and content (ie, 'No prending revisions found.')on the same line. Shouldn't be on different lines as when we have pending revisions?

Actual revision_moderation.module code at line 230 is:

$output .= t('No pending revisions found.');

and should be replaced by:

$list[] = t('No pending revisions found.');
$output .= theme('item_list', $list);

What do you think?