Closed (fixed)
Project:
Printer, email and PDF versions
Version:
6.x-1.10
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Feb 2010 at 16:34 UTC
Updated:
26 Jul 2010 at 16:50 UTC
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