Hi gurus!
 I have a customized version of roller, it is difficult to update to new
version,
So I want to fix the error in this version. Please help.


I think there is a error in file  WeblogEntryFormAction.java
//-----------------------------------------------------------------------
    /**
     * Update selected comments: delete and/or mark as spam.
     */
    public ActionForward updateComments(
        ActionMapping       mapping,
        ActionForm          actionForm,
        HttpServletRequest  request,
        HttpServletResponse response)
        throws IOException, ServletException
    {
        ActionForward forward = mapping.findForward("weblogEdit.page");
        ActionErrors errors = new ActionErrors();
        RollerRequest rreq = RollerRequest.getRollerRequest(request);
        RollerSession rollerSession =
RollerSession.getRollerSession(request);
        try
        {
            WeblogEntryData wd = rreq.getWeblogEntry();
            if ( rollerSession.isUserAuthorizedToAuthor(wd.getWebsite()))
            {
                if (wd == null || wd.getId() == null)
                {
                    ResourceBundle resources = ResourceBundle.getBundle(
                        "ApplicationResources", request.getLocale());
                    request.setAttribute("javax.servlet.error.message", 
                        resources.getString("weblogEntry.notFound"));  
                    forward = mapping.findForward("error");

                }
.......
But ho to fix it?

Xing 
========================
 tel.: 010-85237701 13910010327
[EMAIL PROTECTED]




Reply via email to