Update of /cvsroot/openinteract/OpenInteract2/pkg/base_security/OpenInteract2/Action
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv847/OpenInteract2/Action
Modified Files:
Security.pm
Log Message:
ensure that the correct class/name gets displayed when we have an alias_class
Index: Security.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_security/OpenInteract2/Action/Security.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Security.pm 5 Dec 2004 08:51:19 -0000 1.14
--- Security.pm 15 Mar 2005 02:36:12 -0000 1.15
***************
*** 49,53 ****
if ( $type eq 'spops' ) {
! $item_class = $config->{ $key }{class};
next unless ( $item_class );
next if ( $visited->{ $item_class } );
--- 49,54 ----
if ( $type eq 'spops' ) {
! $item_class = $config->{ $key }{alias_class}
! || $config->{ $key }{class};
next unless ( $item_class );
next if ( $visited->{ $item_class } );
|