[Vtigercrm-commits] [vtiger development] #5294: Organization Image Upload Issue
vtiger development
vtiger-tickets at trac.vtiger.com
Mon Jun 23 02:33:47 EDT 2008
#5294: Organization Image Upload Issue
-------------------------+--------------------------------------------------
Reporter: prasad | Owner: developer
Type: defect | Status: new
Priority: unassigned | Milestone: 5.1.0
Component: vtigercrm | Version: 5.0.4
Resolution: | Keywords:
-------------------------+--------------------------------------------------
Comment (by prasad):
The problem might be due to the onclick handler that is being used instead
use onchange handler for file input.
In the file: Smarty/templates_c/Settings/EditCompanyInfo.tpl
{{{
<input type="file" name="binFile" class="small"
value="{$ORGANIZATIONLOGONAME}"
onclick="validateFilename(this);">[{$ORGANIZATIONLOGONAME}]
}}}
with
{{{
<input type="file" name="binFile" class="small"
value="{$ORGANIZATIONLOGONAME}"
onchange="validateFilename(this);">[{$ORGANIZATIONLOGONAME}]
}}}
I have attached the patch w.r.t codebase 5.0.4
--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5294#comment:1>
vtiger development <http://trac.vtiger.com/>
vtigerCRM
More information about the vtigercrm-commits
mailing list