[Vtigercrm-commits] [vtiger development] #7454: Special character (ampersand "&") in password locks user out
vtiger development
vtiger-tickets at trac.vtiger.com
Wed Jul 4 04:12:35 PDT 2012
#7454: Special character (ampersand "&") in password locks user out
---------------------------------+------------------------------------------
Reporter: rolf | Owner: developer
Type: defect | Status: closed
Priority: critical | Milestone: 5.4.0
Component: vtigercrm | Version: 5.3.0
Severity: Medium | Resolution: fixed
Keywords: passwords ampersand |
---------------------------------+------------------------------------------
Changes (by prasad):
* status: new => closed
* resolution: => fixed
* milestone: 6.0.0 => 5.4.0
Comment:
FIX: Avoid escaping '&' in vtlib_purify API.
File: include/utils/VtlibUtils.php
{{{
function vtlib_purify($input, $ignore=false) {
...
// ADD THIS IF vtiger version is below 5.4.0
$value = str_replace('&','&',$value);
return $value;
}}}
Hope it helps.
--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7454#comment:2>
vtiger development <http://trac.vtiger.com/>
vtiger CRM
More information about the vtigercrm-commits
mailing list