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:27:41 -0400 |
commit | ff7d71181038ba1e97e9bbcaa7901638aa715574 (patch) | |
tree | e7f01ddb8e14ff9715367b14d144af3db4423848 | |
parent | 98f6bbb90c8513330a4c382ef80972d861096858 (diff) |
add user id to statistics
-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', |