You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by lh...@apache.org on 2008/10/10 13:18:09 UTC

svn commit: r703407 - /servicemix/scripts/builds/webapps/builds/status.jsp

Author: lhein
Date: Fri Oct 10 04:18:09 2008
New Revision: 703407

URL: http://svn.apache.org/viewvc?rev=703407&view=rev
Log:
fixed calculation of duration when using cached results

Modified:
    servicemix/scripts/builds/webapps/builds/status.jsp

Modified: servicemix/scripts/builds/webapps/builds/status.jsp
URL: http://svn.apache.org/viewvc/servicemix/scripts/builds/webapps/builds/status.jsp?rev=703407&r1=703406&r2=703407&view=diff
==============================================================================
--- servicemix/scripts/builds/webapps/builds/status.jsp (original)
+++ servicemix/scripts/builds/webapps/builds/status.jsp Fri Oct 10 04:18:09 2008
@@ -153,7 +153,7 @@
           }
               
           String updatedRes = lastRes.substring(0, lastRes.indexOf(searchTerm) + searchTerm.length()); 
-          updatedRes += durationText + "(cached result)</a></td>";
+          updatedRes += durationText + "</a></td>";
           return updatedRes;
       }