The print link isn't showing up in the content corner for links if using panels to display nodes.
The reason is that $teaser on line 334 is not FALSE but 0:

<?php
      if (($teaser === FALSE) && isset($node->build_mode) && ($node->build_mode == NODE_BUILD_NORMAL)) {
?>

change this to:

<?php
      if ((!$teaser) && isset($node->build_mode) && ($node->build_mode == NODE_BUILD_NORMAL)) {
?>

Comments

jcnventura’s picture

Status: Needs review » Fixed

Thanks for the info.. I have just committed that change to CVS

Status: Fixed » Closed (fixed)

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