Skip to content

Commit

Permalink
Fixed ignoring result, when result is important.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Luc Paour committed Jun 4, 2003
1 parent cff0d99 commit e392ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions com/gallery/GalleryRemote/GalleryComm2.java
Expand Up @@ -258,11 +258,11 @@ public void interrupt() {
* POSTSs a request to the Gallery server with the given form data.
*/
Properties requestResponse( NVPair form_data[] ) throws GR2Exception, ModuleException, IOException {
return requestResponse( form_data, null, g.getGalleryUrl(SCRIPT_NAME), false);
return requestResponse( form_data, null, g.getGalleryUrl(SCRIPT_NAME), true);
}

Properties requestResponse( NVPair form_data[], URL galUrl ) throws GR2Exception, ModuleException, IOException {
return requestResponse( form_data, null, galUrl, false);
return requestResponse( form_data, null, galUrl, true);
}

/**
Expand Down

0 comments on commit e392ed3

Please sign in to comment.