You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2007/04/25 01:53:09 UTC

svn commit: r532143 - /roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java

Author: agilliland
Date: Tue Apr 24 16:53:08 2007
New Revision: 532143

URL: http://svn.apache.org/viewvc?view=rev&rev=532143
Log:
we want to use the WEBLOG parameter for specifying the action weblog, not WEBLOG_ID.


Modified:
    roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java

Modified: roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java
URL: http://svn.apache.org/viewvc/roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java?view=diff&rev=532143&r1=532142&r2=532143
==============================================================================
--- roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java (original)
+++ roller/trunk/src/org/apache/roller/ui/core/util/struts2/UIActionInterceptor.java Tue Apr 24 16:53:08 2007
@@ -54,7 +54,7 @@
             theAction.setAuthenticatedUser(rses.getAuthenticatedUser());
             
             // extract the work weblog and set it
-            String weblogHandle = request.getParameter(RequestConstants.WEBLOG_ID);
+            String weblogHandle = request.getParameter(RequestConstants.WEBLOG);
             if(!StringUtils.isEmpty(weblogHandle)) {
                 WebsiteData weblog = null;
                 try {