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
Comment #1
jcnventuraThanks for the info.. I have just committed that change to CVS