@UserRoles, Computed Text and a Page

I have placed on a Page the following Computed Text: @UserRoles. Simple enough except it only returns the first Role for a user. I have 3 Roles assigned to me and only the 1st one is ever displayed.

I tried @Explode( @UserRoles; " ,;"; 0; 1 ) to try to place the Roles on separate lines, but still only see 1 Role.

Anyone have a solution?

Subject: @UserRoles in computed text

This is obviously normal: a computed text has no “allow multiple values” option, and @UserRoles returns a list.Try @Implode(@UserRoles;@NewLine), you’ll get what you want…

Thierry Cayla

http://dominoeffects.serveblog.net

Subject: I should have known that

Thank you