diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-06-30 23:29:53 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-06-30 23:29:53 -0600 |
commit | 0d105bcf9dfa0b34b390bd80f49965c563d48534 (patch) | |
tree | a7e761d998fb2c6f84300beab14517fd5c6e7b94 /modules | |
parent | 58e3e469b97e5afa10e76af751130111a14b9c54 (diff) |
Display owner's full name rather than username, ticket #421.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/info/helpers/info_theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/info/helpers/info_theme.php b/modules/info/helpers/info_theme.php index 151885b7..863317a8 100644 --- a/modules/info/helpers/info_theme.php +++ b/modules/info/helpers/info_theme.php @@ -37,7 +37,7 @@ class info_theme_Core { } if ($item->owner) { $results .= "<li>"; - $results .= t("By: %owner_name", array("owner_name" => "<a href=\"#\">{$item->owner->name}</a>")); + $results .= t("By: %owner_name", array("owner_name" => "<a href=\"#\">{$item->owner->full_name}</a>")); $results .= "</li>"; } return $results; |