Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Fix displaying wrapper option in module settings #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/contentbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,52 +422,52 @@ public function displayForm()
),
array(
'value' => 'div',
'text' => $this->l('<div>'),
'text' => $this->l('&lt;div&gt;'),
),
array(
'value' => 'article',
'text' => $this->l('<article>'),
'text' => $this->l('&lt;article&gt;'),
),
array(
'value' => 'blockquote',
'text' => $this->l('<blockquote>'),
'text' => $this->l('&lt;blockquote&gt;'),
),

array(
'value' => 'figure',
'text' => $this->l('<figure>'),
'text' => $this->l('&lt;figure&gt;'),
),
array(
'value' => 'footer',
'text' => $this->l('<footer>'),
'text' => $this->l('&lt;footer&gt;'),
),
array(
'value' => 'hgroup',
'text' => $this->l('<hgroup>'),
'text' => $this->l('&lt;hgroup&gt;'),
),
array(
'value' => 'main',
'text' => $this->l('<main>'),
'text' => $this->l('&lt;main&gt;'),
),
array(
'value' => 'menu',
'text' => $this->l('<menu>'),
'text' => $this->l('&lt;menu&gt;'),
),
array(
'value' => 'nav',
'text' => $this->l('<nav>'),
'text' => $this->l('&lt;nav&gt;'),
),
array(
'value' => 'p',
'text' => $this->l('<p>'),
'text' => $this->l('&lt;p&gt;'),
),
array(
'value' => 'section',
'text' => $this->l('<section>'),
'text' => $this->l('&lt;section&gt;'),
),
array(
'value' => 'span',
'text' => $this->l('<span>'),
'text' => $this->l('&lt;span&gt;'),
),
),
'id' => 'value',
Expand Down