Keeping HTML consistent throughout the site.

This commit is contained in:
Sarven Capadisli 2009-01-27 06:21:36 +00:00
parent 43509a3c17
commit f9403ae99a
3 changed files with 8 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class ProfilesettingsAction extends AccountSettingsAction
$user = common_current_user(); $user = common_current_user();
$profile = $user->getProfile(); $profile = $user->getProfile();
$this->elementStart('form', array('method' => 'POST', $this->elementStart('form', array('method' => 'post',
'id' => 'form_settings_profile', 'id' => 'form_settings_profile',
'class' => 'form_settings', 'class' => 'form_settings',
'action' => common_local_url('profilesettings'))); 'action' => common_local_url('profilesettings')));

View File

@ -269,7 +269,7 @@ class ShowgroupAction extends Action
$this->elementStart('div', 'entity_actions'); $this->elementStart('div', 'entity_actions');
$this->element('h2', null, _('Group actions')); $this->element('h2', null, _('Group actions'));
$this->elementStart('ul'); $this->elementStart('ul');
$this->elementStart('li', array('id' => 'entity_subscribe')); $this->elementStart('li', 'entity_subscribe');
$cur = common_current_user(); $cur = common_current_user();
if ($cur) { if ($cur) {
if ($cur->isMember($this->group)) { if ($cur->isMember($this->group)) {

View File

@ -158,6 +158,9 @@ class GroupList extends Widget
$this->out->elementEnd('div'); $this->out->elementEnd('div');
if ($user) { if ($user) {
$this->out->elementStart('div', 'entity_actions');
$this->out->elementStart('ul');
$this->out->elementStart('li', 'entity_subscribe');
# XXX: special-case for user looking at own # XXX: special-case for user looking at own
# subscriptions page # subscriptions page
if ($user->isMember($this->group)) { if ($user->isMember($this->group)) {
@ -167,6 +170,9 @@ class GroupList extends Widget
$jf = new JoinForm($this->out, $this->group); $jf = new JoinForm($this->out, $this->group);
$jf->show(); $jf->show();
} }
$this->out->elementEnd('li');
$this->out->elementEnd('ul');
$this->out->elementEnd('div');
} }
$this->out->elementEnd('li'); $this->out->elementEnd('li');