Skip to content

Commit 0691a3b

Browse files
authored
FIeld / Field group create - remove empty column (#33806)
1 parent 852670d commit 0691a3b

File tree

2 files changed

+11
-23
lines changed

2 files changed

+11
-23
lines changed

administrator/components/com_fields/tmpl/field/edit.php

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,12 @@
7373
<?php $this->set('ignore_fieldsets', array('fieldparams')); ?>
7474
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
7575
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'publishing', Text::_('JGLOBAL_FIELDSET_PUBLISHING', true)); ?>
76-
<div class="row">
77-
<div class="col-md-6">
78-
<fieldset id="fieldset-publishingdata" class="options-form">
79-
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
80-
<div>
81-
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
82-
</div>
83-
</fieldset>
84-
</div>
85-
<div class="col-md-6">
76+
<fieldset id="fieldset-publishingdata" class="options-form">
77+
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
78+
<div>
79+
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
8680
</div>
87-
</div>
81+
</fieldset>
8882
<?php echo HTMLHelper::_('uitab.endTab'); ?>
8983
<?php if ($this->canDo->get('core.admin')) : ?>
9084
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'rules', Text::_('JGLOBAL_ACTION_PERMISSIONS_LABEL', true)); ?>

administrator/components/com_fields/tmpl/group/edit.php

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,12 @@
5353
</div>
5454
<?php echo HTMLHelper::_('uitab.endTab'); ?>
5555
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'publishing', Text::_('JGLOBAL_FIELDSET_PUBLISHING', true)); ?>
56-
<div class="row form-horizontal-desktop">
57-
<div class="col-md-6">
58-
<fieldset id="fieldset-rules" class="options-form">
59-
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
60-
<div>
61-
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
62-
</div>
63-
</fieldset>
64-
</div>
65-
<div class="col-md-6">
66-
</div>
67-
</div>
56+
<fieldset id="fieldset-rules" class="options-form">
57+
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
58+
<div>
59+
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
60+
</div>
61+
</fieldset>
6862
<?php echo HTMLHelper::_('uitab.endTab'); ?>
6963
<?php $this->set('ignore_fieldsets', array('fieldparams')); ?>
7064
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>

0 commit comments

Comments
 (0)