This is the patch to for 4.7 correction of edit -pencil- icon not showing up in some nodes

on node.tpl

print $directory
should be
print base_path (). $directory ;

on line no 10

<span class="editlink"><a href="<?php print $node_url ?>/edit"><img src="<?php print $directory ?>/images/pencil.png" alt="Edit Link" /></a></span>

change to

<span class="editlink"><a href="<?php print $node_url ?>/edit"><img src="<?php print base_path (). $directory ; ?>/images/pencil.png" alt="Edit Link" /></a></span>

Comments

hswong3i’s picture

Status: Needs review » Fixed

tested -> accept -> fixed -> upload to CVS
thank you for your help ;-)

Anonymous’s picture

Status: Fixed » Closed (fixed)