Welcome, Guest
Please Login or Register.    Lost Password?

Loginname vs Username
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Loginname vs Username
#817
Loginname vs Username 3 Years, 9 Months ago Karma: 0
Hello,

When visitors of the site want to see the list of team-members, it is the login-name that is displayed.
Is it possible to change that to the username instead of the login-name ?

Greetz,
DrWeB.be
drweb
drweb
Fresh Boarder
Posts: 16
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2008/05/12 19:11 By drweb.
The administrator has disabled public write access.
 
#822
Re:Loginname vs Username 3 Years, 8 Months ago Karma: 0
any idea anyone ?
drweb
drweb
Fresh Boarder
Posts: 16
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#828
Re:Loginname vs Username 3 Years, 8 Months ago Karma: 9
mls_teams.html.php, function viewTeam, Lines 138ff
Code:

<tr>
<td class="sectiontableheader"><?php echo $l->m("name"); ?>:</td>
<td class="sectiontableheader"><?php echo $l->m("function"); ?>:</td>
</tr>



Change that to:
Code:

<tr>
<td class="sectiontableheader"><?php echo $l->m("fullusername"); ?>:</td>
<td class="sectiontableheader"><?php echo $l->m("function"); ?>:</td>
</tr>

moensch
moensch
Administrator
Posts: 678
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#829
Re:Loginname vs Username 3 Years, 8 Months ago Karma: 9
Wrong. Same file, line 150:
Code:

<td class="<?php echo $class;?>"><?php echo $row->username; ?></td>


To:
Code:

<td class="<?php echo $class;?>"><?php echo $row->fullusername; ?></td>
moensch
moensch
Administrator
Posts: 678
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#832
Re:Loginname vs Username 3 Years, 8 Months ago Karma: 0
Thanks !!!
I'll check it out tonight...

Greetings,
Kurt
drweb
drweb
Fresh Boarder
Posts: 16
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 1
Moderators: moensch