Show
Ignore:
Timestamp:
09/04/10 22:05:44 (21 months ago)
Author:
ffray
Message:

Added navigateTo-elements to auth-constraints allowing to create
conditional navigation-cases.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-0.13.x/pfixcore/src/de/schlund/pfixcore/util/TransformerCallback.java

    r5306 r5341  
    347347                if(authConst != null) { 
    348348                    if(authConst.isAuthorized(context)) result = 1; 
    349                     else if(authConst.getAuthPage()!=null) result = 2; 
     349                    else if(authConst.getAuthPage(context)!=null) result = 2; 
    350350                    else result = 3; 
    351351                }