Closed (fixed)
Project:
Celju
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Nov 2010 at 00:52 UTC
Updated:
15 Mar 2013 at 20:10 UTC
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
Comment #1
mattwmc commentedwhoops should be:
replace:
with:
Comment #2
sk33lz commentedSwitched 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.
Comment #3
sk33lz commented