[portal-commits] JBoss Portal SVN: r13090 - branches/Enterprise_Portal_Platform_4_3_GA_JBEPP-51/core-cms/src/main/org/jboss/portal/core/cms/ui/admin.
portal-commits at lists.jboss.org
portal-commits at lists.jboss.org
Thu Mar 26 23:31:43 EDT 2009
Author: mmillson
Date: 2009-03-26 23:31:43 -0400 (Thu, 26 Mar 2009)
New Revision: 13090
Modified:
branches/Enterprise_Portal_Platform_4_3_GA_JBEPP-51/core-cms/src/main/org/jboss/portal/core/cms/ui/admin/CMSAdminPortlet.java
Log:
Fix Access is Denied error on saving a modified CMS file for [JBEPP-51]
Modified: branches/Enterprise_Portal_Platform_4_3_GA_JBEPP-51/core-cms/src/main/org/jboss/portal/core/cms/ui/admin/CMSAdminPortlet.java
===================================================================
--- branches/Enterprise_Portal_Platform_4_3_GA_JBEPP-51/core-cms/src/main/org/jboss/portal/core/cms/ui/admin/CMSAdminPortlet.java 2009-03-26 20:37:42 UTC (rev 13089)
+++ branches/Enterprise_Portal_Platform_4_3_GA_JBEPP-51/core-cms/src/main/org/jboss/portal/core/cms/ui/admin/CMSAdminPortlet.java 2009-03-27 03:31:43 UTC (rev 13090)
@@ -1489,7 +1489,7 @@
sMakeLive = "on";
}
- if (!"".equals(sFilePath) && !CHECK_FOR_XSS_PATTERN.matcher(sFilePath).matches())
+ if (!"".equals(sFilePath) && CHECK_FOR_XSS_PATTERN.matcher(sFilePath).matches())
{
String sContent = aReq.getParameter("elm1");
More information about the portal-commits
mailing list