summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-09 17:40:11 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-07-09 17:40:11 -0700
commitf527b8a8d7cf38e21c0ceb8d54cfae2d679e1564 (patch)
tree432820e0eb1d42e1f8658715443fa18adc555eef
parent8b65883f9ddf1cb1b7bdec323722da351fa0cb69 (diff)
wrong order for span and a in profilesection
-rw-r--r--lib/profilesection.php2
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);