Skip to content

Commit

Permalink
missing echo gridspan
Browse files Browse the repository at this point in the history
  • Loading branch information
trob authored Jul 8, 2017
1 parent e861cb0 commit 610f8dc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
if ($this->hasActions) : ?>
<div class="fabrikActions form-actions">
<div class="row-fluid">
<div class="<?php FabrikHelperHTML::getGridSpan(4); ?> btn-group">
<div class="<?php echo FabrikHelperHTML::getGridSpan(4); ?> btn-group">
<?php
echo $form->submitButton. ' ';
echo $form->applyButton . ' ';
echo $form->copyButton;
?>
</div>
<?php if ($form->customButtons): ?>
<div class="fabrikCustomButtons <?php FabrikHelperHTML::getGridSpan(2); ?>"">
<div class="fabrikCustomButtons <?php echo FabrikHelperHTML::getGridSpan(2); ?>"">
<div class="btn-group">
<?php echo $form->customButtons; ?>
</div>
</div>
<?php endif; ?>
<?php if ( $form->gobackButton || $form->resetButton || $form->deleteButton || $form->clearMultipageSessionButton): ?>
<div class="<?php FabrikHelperHTML::getGridSpan(2); ?>"><!-- No Page buttons --></div>
<div class="<?php FabrikHelperHTML::getGridSpan(4); ?>">
<div class="<?php echo FabrikHelperHTML::getGridSpan(2); ?>"><!-- No Page buttons --></div>
<div class="<?php echo FabrikHelperHTML::getGridSpan(4); ?>">
<div class="pull-right btn-group">
<?php
echo $form->gobackButton;
Expand Down

1 comment on commit 610f8dc

@simbus82
Copy link

@simbus82 simbus82 commented on 610f8dc Jul 10, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ops, Is this not released with Fabrik 3.7? All forms now don't have correct style in the submit button. i hope in a 3.7.1 soon, right?

Please sign in to comment.