diff options
author | Sarven Capadisli <csarven@status.net> | 2010-03-13 16:48:21 -0500 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-03-25 21:32:28 +0100 |
commit | 321093886fd708696c28118893443aa598c6b97f (patch) | |
tree | d32462e4b3cae947f4b45b15811e0dcbc79a0040 | |
parent | 800b33590696e85480aa73c25261d80f1926e56d (diff) |
Assigned an identifier for the representative user and group profile
-rw-r--r-- | actions/showgroup.php | 3 | ||||
-rw-r--r-- | lib/userprofile.php | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/actions/showgroup.php b/actions/showgroup.php index 5704b13d1..a0d05ba37 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -221,7 +221,8 @@ class ShowgroupAction extends GroupDesignAction function showGroupProfile() { - $this->elementStart('div', 'entity_profile vcard author'); + $this->elementStart('div', array('id' => 'i', + 'class' => 'entity_profile vcard author')); $this->element('h2', null, _('Group profile')); diff --git a/lib/userprofile.php b/lib/userprofile.php index 2c3b1ea45..ca060842b 100644 --- a/lib/userprofile.php +++ b/lib/userprofile.php @@ -71,7 +71,8 @@ class UserProfile extends Widget { if (Event::handle('StartProfilePageProfileSection', array(&$this->out, $this->profile))) { - $this->out->elementStart('div', 'entity_profile vcard author'); + $this->out->elementStart('div', array('id' => 'i', + 'class' => 'entity_profile vcard author')); $this->out->element('h2', null, _('User profile')); if (Event::handle('StartProfilePageProfileElements', array(&$this->out, $this->profile))) { |