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 c2e130b commit e861cb0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="fabrikActions form-actions">
<div class="row-fluid">
<?php if ( $form->submitButton || $form->applyButton || $form->copyButton ): ?>
<div class="<?php FabrikHelperHTML::getGridSpan(4); ?>">
<div class="<?php echo FabrikHelperHTML::getGridSpan(4); ?>">
<div class="btn-group">
<?php
echo $form->submitButton . ' ';
Expand All @@ -28,21 +28,21 @@
</div>
<?php endif; ?>
<?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->prevButton || $form->nextButton ): ?>
<div class="offset1 <?php FabrikHelperHTML::getGridSpan(2); ?>">
<div class="offset1 <?php echo FabrikHelperHTML::getGridSpan(2); ?>">
<div class="btn-group">
<?php echo $form->prevButton . ' ' . $form->nextButton; ?>
</div>
</div>
<?php endif; ?>
<?php if ( $form->gobackButton || $form->resetButton || $form->deleteButton || $form->clearMultipageSessionButton): ?>
<div class="offset1 <?php FabrikHelperHTML::getGridSpan(4); ?>">
<div class="offset1 <?php echo FabrikHelperHTML::getGridSpan(4); ?>">
<div class="pull-right btn-group">
<?php
echo $form->gobackButton;
Expand Down

0 comments on commit e861cb0

Please sign in to comment.