Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lang/en/settings.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
$lang["show-realname"] = "Show the real names instead of usernames";
$lang["enable-pagelist"] = "Enable showing a page list for each user statistic";
$lang["show-profile-links"] = "Enable making the name link to the user's profile page";
$lang["show-profile-links"] = "Use DokuWiki's format for user name eventually with link to the user's profile page. This format is set in 'showuseras' configuration setting.";
$lang["show-deleted-users"] = "Show deleted users";
1 change: 1 addition & 0 deletions syntax.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ function _getUser($name)
if ($user !== false and $this->getConf("show-realname")) {
$dname = $user["name"];
} else if ($this->getConf("show-profile-links")) {
$dname = userlink($name);
} else if ($user !== false) {
$dname = $name;
} else {
Expand Down