This links users to a wiki-page - remember, they have to fill out this page themselves!
Warning: This patch alters the user's name by storing a direct HTML link within the name string itself. If only used for displaying, this is not an issue – however, it will break dokuwiki if the $INFO['user'] text is used for any other purpose (tested for access via auth_aclcheck, for example)! I ran into this problem while trying to integrate the safely include php code patch together with this patch, using dokuwiki-2005-09-22. - Mike Tedder @ 2006/1/6
$revinfo['user'] = '<a href="./doku.php?id=wiki:users:'.$revinfo['user'].'">'.$revinfo['user'].'</a>';
user ./doku.php?id=wiki:users:{URL}
' --- //[[user>@USER@|@NAME@]] @DATE@//'
if($_SERVER['REMOTE_USER']) print $lang['loggedinas'].': '.'<a href="./doku.php?id=wiki:users:'.$_SERVER['REMOTE_USER'].'">'.$INFO['userinfo']['name'].'</a>';
$revinfo['user'] = '<a href="./doku.php?id=wiki:users:'.$revinfo['user'].'">'.$revinfo['user'].'</a>';
user ./doku.php?id=wiki:users:{URL}
— Alexander Krause 2005/05/22 17:56