Author: shijh
Date: Thu Jul 30 12:33:05 2015
New Revision: 1693417

URL: http://svn.apache.org/r1693417
Log:
Comment out 
Debug.logInfo("======save last view: " + 
session.getAttribute("_LAST_VIEW_NAME_"));

Modified:
    
ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Modified: 
ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java?rev=1693417&r1=1693416&r2=1693417&view=diff
==============================================================================
--- 
ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java 
(original)
+++ 
ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java 
Thu Jul 30 12:33:05 2015
@@ -612,7 +612,7 @@ public class RequestHandler {
 
         // if the request has the save-last-view attribute set, save it now 
before the view can be rendered or other chain done so that the _LAST* session 
attributes will represent the previous request
         if (nextRequestResponse.saveLastView) {
-            Debug.logInfo("======save last view: " + 
session.getAttribute("_LAST_VIEW_NAME_"), module);
+            // Debug.logInfo("======save last view: " + 
session.getAttribute("_LAST_VIEW_NAME_"));
             String lastViewName = (String) 
session.getAttribute("_LAST_VIEW_NAME_");
             // Do not save the view if the last view is the same as the 
current view and saveCurrentView is false
             if (!(!nextRequestResponse.saveCurrentView && 
"view".equals(nextRequestResponse.type) && 
nextRequestResponse.value.equals(lastViewName))) {


Reply via email to