DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9523>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9523 Action and multiple roles Summary: Action and multiple roles Product: Struts Version: 1.1 Beta 1 Platform: PC OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Controller AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] If an action is protected by multiple roles, specified for example via <set-property property="roles" value="customeradmin,upadmin" /> that action can't be invoked, unless the roles are prefixed with a character, because the first character of the roles seems to be lost... I think the following statement in ActionConfig.java, setRoles, is resonsible for it: list.add(roles.substring(1, comma).trim()); Probably it should be changed to: list.add(roles.substring(0, comma).trim()); Best regards, Chris. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>