by Niels on Wed 19. Jun, 2002 14:06
I have updated the how to, new version is 1.0.3, the above request have been implemented, guest postes does now not have there name showen as a link
here are how to upgrade
in viewtopic.php
[FIND]
'U_VIEW_POSTER_PROFILE' => ($userdata['user_level'] != ADMIN)? append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $poster_id) : append_sid("admin/admin_users.$phpEx?mode=edit&u=" . $poster_id) ,
[REPLACE WITH]
'U_VIEW_POSTER_PROFILE' => ($poster_id != ANONYMOUS) ? ('<a href="'.(($userdata['user_level'] != ADMIN)? append_sid('profile.'.$phpEx.'?mode=viewprofile&' . POST_USERS_URL . '=' . $poster_id) : append_sid('admin/admin_users.'.$phpEx.'?mode=edit&u=' . $poster_id)) .'" class="name">'.$poster.'</a>') : $poster ,
in viewtopic_body.tpl
[FIND]
<a href="{postrow.U_VIEW_POSTER_PROFILE}" class="name">{postrow.POSTER_NAME}</a>
[REPLACE WITH]
{postrow.U_VIEW_POSTER_PROFILE}
this should do the trick
(if a how-to is EM ready, it will mostly be bullet prof, since a machine is more picky than a human.
)