Can't put a form (block level element) inside a span; changed it to a div

This commit is contained in:
Zach Copley 2011-04-13 17:34:31 -07:00
parent 88bcc7728c
commit bcafe0f819

View File

@ -124,7 +124,7 @@ class PeopletagsWidget extends Widget
function showEditTagForm($tags=null)
{
$this->out->elementStart('span', 'form_tag_user_wrap');
$this->out->elementStart('div', 'form_tag_user_wrap');
$this->out->elementStart('form', array('method' => 'post',
'class' => 'form_tag_user',
'name' => 'tagprofile',
@ -147,7 +147,7 @@ class PeopletagsWidget extends Widget
$this->out->elementEnd('fieldset');
$this->out->elementEnd('form');
$this->out->elementEnd('span');
$this->out->elementEnd('div');
}
function showEmptyList()