I found an NPE on a createpage-entervariables.action at about the right date.
2005-09-06 01:00:12,525 ERROR [atlassian.confluence.util.XWorkTransactionInterceptor] Invoking rollback for transaction on action '/pages/createpage-entervariables.action (PageVariablesAction.execute())' due to throwable: java.lang.NullPointerException
java.lang.NullPointerException
at com.atlassian.confluence.pages.actions.PageAwareInterceptor.intercept(PageAwareInterceptor.java:82)
at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165)
at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165)
at com.atlassian.confluence.core.ConfluenceAutowireInterceptor.intercept(ConfluenceAutowireInterceptor.java:25)
This happens because there was no current page, and the action doesn't require one, but the permissions check tries to get the space from the page.
This can no longer happen due to other changes to PageAwareInterceptor
I found an NPE on a createpage-entervariables.action at about the right date.
2005-09-06 01:00:12,525 ERROR [atlassian.confluence.util.XWorkTransactionInterceptor] Invoking rollback for transaction on action '/pages/createpage-entervariables.action (PageVariablesAction.execute())' due to throwable: java.lang.NullPointerException
java.lang.NullPointerException
at com.atlassian.confluence.pages.actions.PageAwareInterceptor.intercept(PageAwareInterceptor.java:82)
at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165)
at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165)
at com.atlassian.confluence.core.ConfluenceAutowireInterceptor.intercept(ConfluenceAutowireInterceptor.java:25)
This happens because there was no current page, and the action doesn't require one, but the permissions check tries to get the space from the page.
This can no longer happen due to other changes to PageAwareInterceptor