[SOLVED] show name and surname while assigning of test cases

Discuss test processes, standards, documentation, teams, criteria, test environments, etc.

Moderators: Amaradana, TurboPT, TL Developers

Locked
yuryP
TestLink user
Posts: 12
Joined: Thu Jul 30, 2015 6:28 pm

[SOLVED] show name and surname while assigning of test cases

Post by yuryP »

hi guys,
currently in der TL version 1.9.14 while assigning test cases to a tester I can only see login name.
Is there a parameter/possibility, that allows to display name and surname of tester in drop down field?
We use as login name an employee id. This is a little cryptically, so we have first to seek for more details in other application.
thank you for your advise.
regards
yury
yuryP
TestLink user
Posts: 12
Joined: Thu Jul 30, 2015 6:28 pm

Re: show name and surname while assigning of test cases

Post by yuryP »

solved. :-)

the wanted behavior was reached by adapting of "$tlCfg->username_format"

e.g.

Code: Select all

/**
 * Display name definition (used to build a human readable display name for users)
 * Example of values:
 *    '%first% %last%'          -> John Cook
 *    '%last%, %first%'          -> Cook John
 *    '%first% %last% %login%'    -> John Cook [ux555]
 **/
$tlCfg->username_format = '%last%, %first% (%login%)';
Locked