[Vtigercrm-commits] [vtiger development] #1495: harcoded strings in modules/Products/Popup.php
vtiger development
vtiger-tickets at vtiger.fosslabs.com
Thu Jul 13 08:25:51 EDT 2006
#1495: harcoded strings in modules/Products/Popup.php
-----------------------+----------------------------------------------------
Reporter: tgironna | Owner: developer
Type: task | Status: new
Priority: trivial | Milestone: 4.2.4
Component: vtigercrm | Version:
Keywords: hardcoded |
-----------------------+----------------------------------------------------
There are two hardcoded strings in the file modules/Products/Popup.php in
the lines 90 and 92 :
{{{
echo get_form_header("Product Search", "", false);
$xtpl->assign("PRODUCTLISTHEADER", get_form_header("Products List", "",
false ));
}}}
The replacement which rectify that is :
{{{
echo get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], "", false);
$xtpl->assign("PRODUCTLISTHEADER",
get_form_header($mod_strings['LBL_LIST_FORM_TITLE'], "", false ));
}}}
--
Ticket URL: <http://vtiger.fosslabs.com/cgi-bin/trac.cgi/ticket/1495>
vtiger development <http://vtiger.fosslabs.com/>
vtigerCRM
More information about the vtigercrm-commits
mailing list