Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 9 → Rev 8

/trunk/src/org/tela_botanica/client/AutoCompleteAsyncTextBox.java
104,12 → 104,10
* Here we fetch the URL and call the handler
*/
String rematch=match.replaceAll(" ","/");
rematch=rematch.replaceAll("%","");
String rematch=match.replaceFirst(" ","/");
if (this.searchUrl!=null && searching==false) {
searching=true;
// HTTPRequest.asyncGet(URL.encodeComponent(this.searchUrl) + rematch, responseTextHandler );
HTTPRequest.asyncGet(this.searchUrl + rematch, responseTextHandler );
 
}