From: Zach Copley Date: Thu, 14 Apr 2011 00:34:31 +0000 (-0700) Subject: Can't put a form (block level element) inside a span; changed it to a div X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bcafe0f81904be866ae270b61798cdc49ff47feb;p=quix0rs-gnu-social.git Can't put a form (block level element) inside a span; changed it to a div --- diff --git a/lib/peopletags.php b/lib/peopletags.php index faf408c895..ec8c04241d 100644 --- a/lib/peopletags.php +++ b/lib/peopletags.php @@ -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()