diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-09 17:40:11 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-09 17:40:11 -0700 |
commit | f527b8a8d7cf38e21c0ceb8d54cfae2d679e1564 (patch) | |
tree | 432820e0eb1d42e1f8658715443fa18adc555eef /lib | |
parent | 8b65883f9ddf1cb1b7bdec323722da351fa0cb69 (diff) |
wrong order for span and a in profilesection
Diffstat (limited to 'lib')
-rw-r--r-- | lib/profilesection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/profilesection.php b/lib/profilesection.php index 8ed290e03..9ff243fb5 100644 --- a/lib/profilesection.php +++ b/lib/profilesection.php @@ -94,8 +94,8 @@ class ProfileSection extends Section $profile->fullname : $profile->nickname)); $this->out->element('span', 'fn nickname', $profile->nickname); - $this->out->elementEnd('span'); $this->out->elementEnd('a'); + $this->out->elementEnd('span'); $this->out->elementEnd('td'); if ($profile->value) { $this->out->element('td', 'value', $profile->value); |