You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by rw...@apache.org on 2006/01/23 22:13:39 UTC

svn commit: r371668 - /portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java

Author: rwatler
Date: Mon Jan 23 13:13:36 2006
New Revision: 371668

URL: http://svn.apache.org/viewcvs?rev=371668&view=rev
Log:
fix coding error resuting in missing security constraints

Modified:
    portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java

Modified: portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java?rev=371668&r1=371667&r2=371668&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java (original)
+++ portals/jetspeed-2/trunk/components/page-manager/src/java/org/apache/jetspeed/om/page/impl/SecurityConstraintsImpl.java Mon Jan 23 13:13:36 2006
@@ -207,7 +207,7 @@
         allConstraints = new ArrayList(8);
 
         // add any defined security constraints
-        if ((securityConstraints != null) && !securityConstraints.isEmpty())
+        if ((getSecurityConstraints() != null) && !getSecurityConstraints().isEmpty())
         {
             allConstraints.addAll(securityConstraints);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org