From: <bra...@us...> - 2008-10-28 01:55:21
|
Revision: 2620 http://archive-access.svn.sourceforge.net/archive-access/?rev=2620&view=rev Author: bradtofel Date: 2008-10-28 01:32:15 +0000 (Tue, 28 Oct 2008) Log Message: ----------- BUGFIX (unreported): do not forward WaybackRequest fields with 'null' values. Modified Paths: -------------- branches/wayback-1_4_1/wayback-core/src/main/java/org/archive/wayback/core/WaybackRequest.java Modified: branches/wayback-1_4_1/wayback-core/src/main/java/org/archive/wayback/core/WaybackRequest.java =================================================================== --- branches/wayback-1_4_1/wayback-core/src/main/java/org/archive/wayback/core/WaybackRequest.java 2008-10-28 01:30:59 UTC (rev 2619) +++ branches/wayback-1_4_1/wayback-core/src/main/java/org/archive/wayback/core/WaybackRequest.java 2008-10-28 01:32:15 UTC (rev 2620) @@ -822,6 +822,7 @@ } if(isStandard) continue; String val = filters.get(key); + if(val == null) continue; if (queryString.length() > 0) { queryString.append(" "); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |