[Vtigercrm-developers] Tiny bug

John Crisp john at reetspetit.net
Thu Jun 24 08:00:15 PDT 2010


Just noticed the following which I think is a bug :

I noticed in my logs that the file 
/themes/softed/images/findduplicates.gif not found

The file is actually in /themes/images

In Smarty/template/Buttons_List.tpl around lines 114 & 115 are 
references to the file. It would appear that the first reference is :

114 : <img src="{$IMAGE_PATH}findduplicates.gif"

but the other one is :

115 : <img src="{'findduplicates.gif'|@vtiger_imageurl:$THEME}"


I guess changing second of the above two lines to the first will resolve it.

B. Rgds
John


Smarty/templates/Buttons_List.tpl:					<!--<td 
style="padding-right:10px"><a 
href="index.php?module={$MODULE}&action=FindDuplicateRecords&button_view=true&list_view=true&parenttab={$CATEGORY}"><img 
src="{$IMAGE_PATH}findduplicates.gif" alt="{$APP.LBL_FIND_DUPICATES}" 
title="{$APP.LBL_FIND_DUPLICATES}" border="0"></a></td> -->


Smarty/templates/Buttons_List1.tpl:					<td 
style="padding-right:10px"><a 
href="index.php?module={$MODULE}&action=FindDuplicateRecords&button_view&list_view"><img 
src="{'findduplicates.gif'|@vtiger_imageurl:$THEME}" 
alt="{$APP.LBL_FIND_DUPICATES}" title="{$APP.LBL_FIND_DUPLICATES}" 
border="0"></a></td>



More information about the vtigercrm-developers mailing list