diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-15 10:05:16 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-15 10:05:16 -0400 |
commit | 8da76e0810342a90ac006f67cfd73500972f883a (patch) | |
tree | 8088da970f329fcc5fbcdfa41f92ccb9dd942320 /lib/profileaction.php | |
parent | 0073a75dff5ac60f98933900745d949e9635c34c (diff) |
add user id to statistics
Diffstat (limited to 'lib/profileaction.php')
-rw-r--r-- | lib/profileaction.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/profileaction.php b/lib/profileaction.php index c81924e31..1f2e30994 100644 --- a/lib/profileaction.php +++ b/lib/profileaction.php @@ -179,6 +179,11 @@ class ProfileAction extends Action $this->element('h2', null, _('Statistics')); // Other stats...? + $this->elementStart('dl', 'entity_user-id'); + $this->element('dt', null, _('User ID')); + $this->element('dd', null, $this->profile->id); + $this->elementEnd('dl'); + $this->elementStart('dl', 'entity_member-since'); $this->element('dt', null, _('Member since')); $this->element('dd', null, date('j M Y', |