Skip to content

Commit

Permalink
Update unvalidated.php
Browse files Browse the repository at this point in the history
  • Loading branch information
lianglee committed Oct 11, 2018
1 parent f85867a commit 515a5f5
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@
$search = input('search_users');

$data = $users->getUnvalidatedUSERS($search);

$pagination->setItem($data);
$list = $pagination->getItem();
$count = $users->getUnvalidatedUSERS($search, 'count');

?>
<div class="row">
<div class="col-md-12">
<form method="post">
<input type="text" name="search_users" placeholder="<?php echo ossn_print('search'); ?>" />
<input type="submit" class="btn btn-primary" value="<?php echo ossn_print('search'); ?>"/>
</form>
</div>
</div>
<div class="row margin-top-10">
<div class="col-md-12">
<table class="table ossn-users-list">
<tbody>
<tr class="table-titles">
Expand Down Expand Up @@ -61,7 +62,6 @@
?>
</tbody>
</table>
<?php echo ossn_view_pagination($count); ?>
</div>
<div class="row">
<?php echo $pagination->pagination(); ?>
</div>

1 comment on commit 515a5f5

@lianglee
Copy link
Member Author

Choose a reason for hiding this comment

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

issues when visiting administrator/unvalidated_users #1355

Please sign in to comment.