From: <bra...@us...> - 2008-08-19 02:46:13
|
Revision: 2560 http://archive-access.svn.sourceforge.net/archive-access/?rev=2560&view=rev Author: bradtofel Date: 2008-08-19 02:46:23 +0000 (Tue, 19 Aug 2008) Log Message: ----------- BUGFIX (unreported): was not setting the anchor window to the saved date, causing CaptureSearchResults.getClosest() to return the wrong element as "closest", which was causing problems with the WAXToolbar. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/proxy/ProxyRequestParser.java Modified: trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/proxy/ProxyRequestParser.java =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/proxy/ProxyRequestParser.java 2008-08-19 02:36:33 UTC (rev 2559) +++ trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/proxy/ProxyRequestParser.java 2008-08-19 02:46:23 UTC (rev 2560) @@ -74,6 +74,7 @@ String replayDateStr = BDBMap.getTimestampForId( httpRequest.getContextPath(), id); wbRequest.setReplayTimestamp(replayDateStr); + wbRequest.setAnchorTimestamp(replayDateStr); } return wbRequest; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |