<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {mso-style-priority:99;
        mso-style-link:"Texto de globo Car";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif";}
span.EstiloCorreo17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.TextodegloboCar
        {mso-style-name:"Texto de globo Car";
        mso-style-priority:99;
        mso-style-link:"Texto de globo";
        font-family:"Tahoma","sans-serif";}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:612.0pt 792.0pt;
        margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=ES link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal><span lang=EN-US>The problem is when in a picklist you
create a registry with special caracter, vTiger says &#8220;Not accessible&#8221;
just like this (when you enter with a non-admin user):<br>
<br>
</span><a href="http://i.imgur.com/7A9Tv.png"><span lang=EN-US>http://i.imgur.com/7A9Tv.png</span></a><span
lang=EN-US><br>
<br>
In <b>\include\ListView\ListViewController.php</b> in line 201, you have this
line:<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New";
color:#C0504D'>$value</span><span lang=EN-US style='font-family:"Courier New"'>
= html_entity_decode(<span style='color:#C0504D'>$rawValue</span>,ENT_QUOTES<span
style='color:#C0504D'>,$default_charset</span>);      <span style='color:#9BBB59'>//Example:
Mar</span></span><span lang=EN-US style='color:#9BBB59'> </span><span
lang=EN-US style='font-family:"Courier New";color:#9BBB59'>&amp;iacute;a to Marķa<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New";
color:#9BBB59'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US>Then, in the line 303 you are comparing
$value to $this-&gt;picklistValueMap[$fieldName])) just like this:<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'>!in_array<span
style='color:#C0504D'>($value</span>, <span style='color:#C0504D'>$this</span>-&gt;<span
style='color:#4F81BD'>picklistValueMap</span><span style='color:#C0504D'>[$fieldName</span>]))<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US>So you are comparing &#8220;</span><span
lang=EN-US style='font-family:"Courier New"'>Mar</span><span lang=EN-US> </span><span
lang=EN-US style='font-family:"Courier New"'>&amp;iacute;a&#8221; to &#8220;Marķa&#8221;
and this returns false<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US>I changed last line for this and all is
working but I think isn&#8217;t the best solution,<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'>!in_array(<span
style='color:#C0504D'>$rawValue</span>, <span style='color:#C0504D'>$this</span>-&gt;<span
style='color:#4F81BD'>picklistValueMap</span>[$fieldName]))<o:p></o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-US style='font-family:"Courier New"'>Better
solutions? </span><span lang=EN-US style='font-family:Wingdings'>J</span><o:p></o:p></p>

</div>

</body>

</html>