summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/showstream.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index d6a460b29..4724a6fce 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -136,8 +136,16 @@ class ShowstreamAction extends StreamAction {
common_element_start('div', array('id' => 'profile_information'));
if ($profile->fullname) {
- common_element('h1', NULL, $profile->fullname);
+ common_element('h1', NULL, $profile->fullname . '(' . $profile->nickname . ')');
+ } else {
+ common_element('h1', NULL, $profile->nickname);
}
+
+ # XXX: i18n
+
+ common_element('p', 'membersince', _t('Member since: ') .
+ date('j M Y', strtotime($profile->created)));
+
if ($profile->location) {
common_element('p', 'location', $profile->location);
}