Updating to the last version of chameleon i've noted that queryreult.phtml is completely different from the previous version!<br><br>In the previous version i added this lines for 2 reason, to remove&nbsp; SHAPE_INDEX, TILE_INDEX,LAYER_INDEX from query result and for format http header.
<br><br><pre>// loop and add a cell for each result <br>foreach ( $aRow as $key =&gt; $xCell )<br>{<br>        //String comparison to search for fields that should NOT be returned in query results.<br>        if (strcasecmp($key, &quot;SHAPE_INDEX&quot;) == 0 ||
<br>             strcasecmp($key, &quot;TILE_INDEX&quot;) == 0 ||<br>             strcasecmp($key, &quot;LAYER_INDEX&quot;) == 0)<br>             continue;<br>             {<br>             //Look for strings containing an http header.  If exists then format as a link, if not format as normal text.
<br>             if ( stristr ($xCell, '<a href="http://%27/">http://'</a> ))<br>                 $szReturnValue .= &quot;&lt;td class=\&quot;subContentArea1\&quot;&gt;&lt;p<br>class=\&quot;text\&quot;&gt;&lt;a href='&quot;. $xCell.&quot;' target='_blank'&gt;Click here for more
<br>information&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;\n&quot;;<br>             else<br>                $szReturnValue .= &quot;&lt;td class=\&quot;subContentArea1\&quot;&gt;&lt;p<br>class=\&quot;text\&quot;&gt;&quot;. $xCell.&quot;&lt;/p&gt;&lt;/td&gt;\n&quot;;
<br>             }<br>             }<br>                 $szReturnValue .= &quot;&lt;/tr&gt;\n&quot;;<br>             }</pre><br> Can be done something similar also in new queryresult.phtml ??<br><br><br>