[rt-users] RealName instead of Name

Christian Loos cloos at netcologne.de
Tue May 11 13:04:35 EDT 2010


Am 10.05.2010 16:35, schrieb Milos.Barina:
> Hi everyone,
> 
> after migrating to RT 3.8.7 from 3.6.3, users in drop-down fields  (e.g. QueryBuilder) are shown as RealName instead of Name.  This is considered an inconvenience by some people. 
> Is there an administrative setting to change it back? If not, what would be the recommended way to change it back in the code?
> 
> Thank you in advance for any hint.
> 
> Milos
> 
> Discover RT's hidden secrets with RT Essentials from O'Reilly Media.
> Buy a copy at http://rtbook.bestpractical.com
> 

Hi Milos,

you can use this in your RT_SiteConfig.pm

=item C<$UsernameFormat>

This determines how user info is displayed. 'concise' will show one of
either NickName, RealName, Name or EmailAddress, depending on what exists
and whether the user is privileged or not. 'verbose' will show RealName and
EmailAddress.

=cut

Set($UsernameFormat, 'concise');

If you set this to 'verbose' you see RealName, email and Username.
It is not the same as before but you can distinguish between user with
the same name.

Chris



More information about the rt-users mailing list