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
[SOLVED] show name and surname while assigning of test cases
Moderators: Amaradana, TurboPT, TL Developers
Re: show name and surname while assigning of test cases
solved. 
the wanted behavior was reached by adapting of "$tlCfg->username_format"
e.g.

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%)';