Active
Project:
Revision Moderation
Version:
5.x-1.0
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
25 Feb 2008 at 15:29 UTC
Updated:
25 Feb 2008 at 15:29 UTC
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?