Page 1 of 1

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

Posted: Fri Dec 18, 2015 3:34 pm
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

Re: show name and surname while assigning of test cases

Posted: Mon Dec 21, 2015 12:56 pm
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%)';