Closed (fixed)
Project:
Contented7
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jun 2006 at 11:44 UTC
Updated:
5 Jul 2006 at 17:31 UTC
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
Comment #1
hswong3i commentedtested -> accept -> fixed -> upload to CVS
thank you for your help ;-)
Comment #2
(not verified) commented