In order to get the "Submitted By" Module to work you need to replace in the node.tpl -

This:

 <?php if ($submitted) : ?>
      <div class="newsubmitted">
        <?php print t('By ') . theme('username', $node) . "  - " . format_date($node->created, 'custom', "F jS, Y"); ?>
      </div>
    <?php endif; ?>
<?php

With this:

<?php if ($submitted): ?>
      <span class="submitted"><?php print $submitted; ?></span>
    <?php endif; ?>
<?php

Comments

mattwmc’s picture

whoops should be:

replace:

<?php if ($submitted) : ?>
      <div class="submitted">
        <?php print t('By ') . theme('username', $node) . "  - " . format_date($node->created, 'custom', "F jS, Y"); ?>
      </div>
    <?php endif; ?>

with:

<?php if ($submitted): ?>
      <span class="submitted"><?php print $submitted; ?></span>
    <?php endif; ?>
sk33lz’s picture

Switched this back to normal submitted format to avoid this issue.

Fixed in latest 6.x-1.x-dev, and will be live in the 6.x-1.4 release.

sk33lz’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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