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 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 => $xCell )<br>{<br>        //String comparison to search for fields that should NOT be returned in query results.<br>        if (strcasecmp($key, "SHAPE_INDEX") == 0 ||
<br> strcasecmp($key, "TILE_INDEX") == 0 ||<br> strcasecmp($key, "LAYER_INDEX") == 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 .= "<td class=\"subContentArea1\"><p<br>class=\"text\"><a href='". $xCell."' target='_blank'>Click here for more
<br>information</a></p></td>\n";<br>         else<br>                $szReturnValue .= "<td class=\"subContentArea1\"><p<br>class=\"text\">". $xCell."</p></td>\n";
<br>         }<br> }<br> $szReturnValue .= "</tr>\n";<br> }</pre><br> Can be done something similar also in new queryresult.phtml ??<br><br><br>