Closed (fixed)
Project:
Paradise
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Sep 2009 at 12:41 UTC
Updated:
31 Dec 2010 at 21:16 UTC
I believe the problem is in node.tpl.php, line 5. Change:
<?php if ($teaser): ?>
<h2 class="PostHeaderIcon-wrapper"><span class="PostHeader"><a href="<?php echo $node_url; ?>" title="<?php echo $title; ?>"><?php echo $title; ?></a></span></h2>
<?php endif; ?>
to..
<?php if (!$page): ?>
<h2 class="PostHeaderIcon-wrapper"><span class="PostHeader"><a href="<?php echo $node_url; ?>" title="<?php echo $title; ?>"><?php echo $title; ?></a></span></h2>
<?php endif; ?>
Comments
Comment #1
JimmyAx commentedPatch is looking good!