Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 8 → Rev 9

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