Author: dashorst
Date: Tue May 13 02:42:39 2008
New Revision: 655789

URL: http://svn.apache.org/viewvc?rev=655789&view=rev
Log:
WICKET-1409 session nr of requests counting was off by 1

Modified:
    
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/RequestLogger.java

Modified: 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/RequestLogger.java
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/RequestLogger.java?rev=655789&r1=655788&r2=655789&view=diff
==============================================================================
--- 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/RequestLogger.java
 (original)
+++ 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/RequestLogger.java
 Tue May 13 02:42:39 2008
@@ -514,7 +514,7 @@
                {
                        this.sessionId = sessionId;
                        startDate = System.currentTimeMillis();
-                       numberOfRequests = 1;
+                       numberOfRequests = 0;
                }
 
                /**


Reply via email to