Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CSU
tweeki
Commits
84bd7ad8
Commit
84bd7ad8
authored
Mar 03, 2019
by
Tobias Haider
Browse files
Allow class attribute in accordion tag, fixes #133
parent
ebf1978f
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/Hooks.php
View file @
84bd7ad8
...
...
@@ -160,7 +160,7 @@ class TweekiHooks {
</a>
</h4>
</div>
<div id="'
.
$parent
.
static
::
$anchorID
.
'" class="panel-collapse collapse">
<div id="'
.
$parent
.
static
::
$anchorID
.
'" class="panel-collapse collapse
'
.
(
isset
(
$args
[
'class'
]
)
?
htmlentities
(
$args
[
'class'
]
)
:
''
)
.
'
">
<div class="panel-body">
'
.
$parser
->
recursiveTagParse
(
$input
,
$frame
)
.
'
</div>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment