Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
50a0e395
Commit
50a0e395
authored
Aug 26, 2018
by
Carsten Rose
Browse files
Merge branch '6452-no-form-title-design' into 'master'
Bug #6452 No Form Title (Design) See merge request
!67
parents
2a190d01
3091fdac
Pipeline
#770
passed with stage
in 1 minute and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/BuildFormBootstrap.php
View file @
50a0e395
...
...
@@ -126,7 +126,7 @@ class BuildFormBootstrap extends AbstractBuildForm {
$button
=
Support
::
wrapTag
(
'<div class="row"><div class="col-md-12">'
,
$this
->
buildButtons
());
// Show title / frame only if there is a title given.
if
(
$this
->
formSpec
[
F_TITLE
]
!=
''
)
{
if
(
trim
(
$this
->
formSpec
[
F_TITLE
]
)
!=
''
)
{
$classTitle
=
isset
(
$this
->
formSpec
[
F_CLASS_TITLE
])
?
$this
->
formSpec
[
F_CLASS_TITLE
]
:
"qfq-form-title"
;
$title
=
Support
::
wrapTag
(
'<div class="row"><div class="col-md-12">'
,
Support
::
wrapTag
(
'<div class="'
.
$classTitle
.
'">'
,
$this
->
formSpec
[
F_TITLE
]));
}
...
...
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