Skip to content

Commit

Permalink
Merge pull request #1314 from OnTapKristjan/master
Browse files Browse the repository at this point in the history
Fixed a bug where type attribute for tag button was missing
  • Loading branch information
vpelipenko committed Jun 24, 2015
2 parents db17c80 + 75fac6f commit 0f269c4
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 0f269c4

Please sign in to comment.