Skip to content

Commit

Permalink
Fixed a bug where type attribute for tag button was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
OnTapKristjan committed May 28, 2015
1 parent 57ab446 commit 75fac6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ $numColumns = sizeof($block->getColumns());
<?php echo __('of %1', '<span>' . $block->getCollection()->getLastPageNumber() . '</span>') ?>
</label>
<?php if ($_curPage < $_lastPage): ?>
<button href="#"
<button type="button"
title="<?php echo __('Next page') ?>"
class="action-next"
onclick="<?php echo $block->getJsObjectName() ?>.setPage('<?php echo($_curPage + 1) ?>');return false;">
Expand Down

0 comments on commit 75fac6f

Please sign in to comment.