Skip to content

Commit

Permalink
fixed to enable pagination feature in event member list page which us…
Browse files Browse the repository at this point in the history
…e search POST parameter (fixes #1680)
  • Loading branch information
watanabe committed Jun 4, 2013
1 parent f547691 commit d9b04a0
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -4,7 +4,7 @@

<?php slot('title', __('Event Member List')); ?>

<?php echo $form->renderFormTag(url_for('communityTopic/eventMemberList')) ?>
<?php echo $form->renderFormTag(url_for('communityTopic/eventMemberList'), array('method' => 'get')) ?>
<table>
<?php echo $form ?>
<tr>
Expand All @@ -16,7 +16,7 @@
<?php echo __('There are no event members matches search condition.') ?>
<?php else: ?>
<?php ob_start() ?>
<p><?php op_include_pager_navigation($pager, 'communityTopic/eventMemberList?page=%d') ?></p>
<p><?php op_include_pager_navigation($pager, 'communityTopic/eventMemberList?page=%d', array('use_current_query_string' => true)) ?></p>
<?php $pagerNavi = ob_get_flush() ?>
<?php foreach ($pager->getResults() as $eventMember): ?>
<?php include_partial('communityTopic/eventMemberInfo', array(
Expand Down

0 comments on commit d9b04a0

Please sign in to comment.