There's a typo bug in simplenews-block.tpl.php which won't allow the list of recent newsletters to display.

Here's the line in question

  <?php if ($use_issue_list && $issue_list): ?>
    <div class="issues-list"><?php print $issuelist; ?></div>
  <?php endif; ?>

notice: $issuelist typo

Should be changed to:

  <?php if ($use_issue_list && $issue_list): ?>
    <div class="issues-list"><?php print $issue_list; ?></div>
  <?php endif; ?>
CommentFileSizeAuthor
#1 simplenews.348167.patch658 bytessutharsan

Comments

sutharsan’s picture

Status: Active » Fixed
StatusFileSize
new658 bytes

Thanks for the fix. Patch is committed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.