This was initially reported http://drupal.org/node/722314 in the Dev version and committed but seems to be back again...

It causes the node that is to be moderated not to be displayed. Removing the '&' does the trick...

function theme_modr8_form(&$form) {
$headers = array(
t('Operations'),
t('Content')
);

function theme_modr8_form($form) {
$headers = array(
t('Operations'),
t('Content')
);

Comments

mathankumarc’s picture

Status: Active » Closed (works as designed)

Works as designed.