svn commit: r581919 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r581919 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh

jacopoc
Author: jacopoc
Date: Thu Oct  4 07:15:03 2007
New Revision: 581919

URL: http://svn.apache.org/viewvc?rev=581919&view=rev
Log:
Fixed bug reported by Jan Valkovic in ML.

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh?rev=581919&r1=581918&r2=581919&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/stats/StatsSinceStart.bsh Thu Oct  4 07:15:03 2007
@@ -26,7 +26,7 @@
 import javolution.util.FastMap;
 
 String clearBins = request.getParameter("clear");
-if (UtilValidate.isNotEmpty(clearBins) && "true".equals(clearBin)) {
+if (UtilValidate.isNotEmpty(clearBins) && "true".equals(clearBins)) {
     ServerHitBin.requestSinceStarted.clear();
     ServerHitBin.eventSinceStarted.clear();
     ServerHitBin.viewSinceStarted.clear();